diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-11-20 23:32:27 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-11-20 23:32:27 +0000 |
commit | 2a4dc45717947cc9d20ca65339ce43bae195311f (patch) | |
tree | 0ca6a8a6ba3a8be36da37fba4676b15255f78f99 /usr.bin/ftp | |
parent | 2ee732eaeeed10b5fab41f27f0d2e90cc2286d86 (diff) |
build statically, to ease disaster recovery in some situations.
ok david@ grange@ henning@ ian@ jakob@ lebel@ markus@ and possibly a few others.
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r-- | usr.bin/ftp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 2f1dc3a49d4..0aeaea32569 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2002/11/08 03:30:17 fgsch Exp $ +# $OpenBSD: Makefile,v 1.20 2003/11/20 23:32:26 tedu Exp $ # Define SMALL to disable command line editing #CFLAGS+=-DSMALL @@ -19,6 +19,7 @@ CPPFLAGS+= -DINET6 LDADD+= -ledit -lcurses -lutil DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} +LDSTATIC= ${STATIC} #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes |