diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-29 03:37:06 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-29 03:37:06 +0000 |
commit | 5d49f64a1d5b6252bd90309748f8541fe26d3ca0 (patch) | |
tree | 8ccd493165bdc80819e8fe4bf627bfd7d9f84b5d /gnu | |
parent | feeae662deef1fbf97cd8474340fdaccc530ef49 (diff) |
Changed the rules.
The variable is now GLOBAL_AUTOCONF_CACHE. You must set it to the name
of the cache file to use. Ether "setenv GLOBAL_AUTOCONF_CACHE /var/tmp/foo"
or add it to /etc/mk.conf
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/texinfo/Makefile.bsd-wrapper | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper index f1814f088b6..4be4ce2619e 100644 --- a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper +++ b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $Id: Makefile.bsd-wrapper,v 1.17 1997/07/29 03:16:30 kstailey Exp $ +# $Id: Makefile.bsd-wrapper,v 1.18 1997/07/29 03:37:05 kstailey Exp $ INFODIR= infodir=${DESTDIR}/usr/share/info INFOPATH= DEFAULT_INFOPATH=/usr/local/info:/usr/share/info:. @@ -16,16 +16,16 @@ all: config.status .FORCE: .IGNORE -.ifdef GLOBAL_CACHE +.ifdef GLOBAL_AUTOCONF_CACHE config: .FORCE INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ /bin/sh ${.CURDIR}/configure --prefix=/usr \ - --cache-file=${HOME}/.Makefile.bsd-wrapper.cache + --cache-file=${GLOBAL_AUTOCONF_CACHE} config.status: INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ /bin/sh ${.CURDIR}/configure --prefix=/usr \ - --cache-file=${HOME}/.Makefile.bsd-wrapper.cache + --cache-file=${GLOBAL_AUTOCONF_CACHE} .else config: .FORCE -rm -f config.cache |