diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-07 00:45:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-07 00:45:38 +0000 |
commit | 77ed43eeca744c4a7e2b36940c7b32e1adb84af9 (patch) | |
tree | 301aa1f7ab8dea28e5068b890774e8d20644e2a3 /gnu/usr.bin/lynx | |
parent | 1bceb62c364061638e90149508f144efc3ff64d8 (diff) |
move CC, CCX, and COPTS forward; wd@ics.nara-wu.ac.jp
Diffstat (limited to 'gnu/usr.bin/lynx')
-rw-r--r-- | gnu/usr.bin/lynx/Makefile.bsd-wrapper | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/lynx/Makefile.bsd-wrapper b/gnu/usr.bin/lynx/Makefile.bsd-wrapper index 9479763daed..2e9ba3af66b 100644 --- a/gnu/usr.bin/lynx/Makefile.bsd-wrapper +++ b/gnu/usr.bin/lynx/Makefile.bsd-wrapper @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.4 1998/12/05 19:43:46 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.5 1999/06/07 00:45:37 deraadt Exp $ MAN= lynx.1 CLEANFILES= lynx.1 -GNUCFLAGS= CFLAGS="${CFLAGS}" +GNUCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" HTMLDIR= /usr/share/doc/html HELPFILES= keystrokes/bookmark_help.html keystrokes/cookie_help.html \ keystrokes/dired_help.html keystrokes/edit_help.html \ @@ -39,11 +39,13 @@ config: .FORCE -rm -f config.cache .endif PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ + ${GNUCFLAGS} \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ sh ${.CURDIR}/configure --prefix=/usr --libdir=/etc ${CF} config.status: PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ + ${GNUCFLAGS} \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ sh ${.CURDIR}/configure --prefix=/usr --libdir=/etc ${CF} |