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 /Makefile | |
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 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 1997/07/29 03:18:39 kstailey Exp $ +# $OpenBSD: Makefile,v 1.19 1997/07/29 03:37:03 kstailey Exp $ # $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $ # @@ -59,8 +59,8 @@ afterinstall: .endif build: -.ifdef GLOBAL_CACHE - rm -f $HOME/.Makefile.bsd-wrapper.cache +.ifdef GLOBAL_AUTOCONF_CACHE + rm -f $GLOBAL_AUTOCONF_CACHE .endif (cd ${.CURDIR}/share/mk && ${MAKE} install) (cd ${.CURDIR}/include; ${MAKE} includes) |