diff options
author | des <des@FreeBSD.org> | 1998-12-15 12:24:26 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1998-12-15 12:24:26 +0000 |
commit | 86d45a4ff79202144554f242bea50213c43e59cf (patch) | |
tree | b3b6a8adace01da0cf224ff9b315f5ea31c83d4a /lib/libfetch/Makefile | |
parent | 78b34160d24b4d8dcc1c2806307f6849ca451401 (diff) | |
download | FreeBSD-src-86d45a4ff79202144554f242bea50213c43e59cf.zip FreeBSD-src-86d45a4ff79202144554f242bea50213c43e59cf.tar.gz |
Fix the "Unknown HTTP error" message.
Make compile_et generate prototypes.
Diffstat (limited to 'lib/libfetch/Makefile')
-rw-r--r-- | lib/libfetch/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index f2539bf..772a602 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1998/11/06 22:14:08 des Exp $ +# $Id: Makefile,v 1.8 1998/11/07 08:59:38 des Exp $ LIB= fetch CFLAGS+= -I. -Wall -pedantic @@ -41,11 +41,11 @@ httperr.inc: http.errors | while read NUM CAT STRING; do \ echo " { $${NUM}, FETCH_$${CAT}, \"$${STRING}\" },"; \ done >> ${.TARGET} - @echo " { -1, FETCH_UNKNOWN, \"Unknown FTP error\" }" >> ${.TARGET} + @echo " { -1, FETCH_UNKNOWN, \"Unknown HTTP error\" }" >> ${.TARGET} @echo "};" >> ${.TARGET} fetch_err.c fetch_err.h: fetch_err.et - compile_et ${.ALLSRC} + compile_et -lang c ${.ALLSRC} .include <bsd.lib.mk> |