diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-21 15:35:39 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-21 15:35:39 +0000 |
commit | 119ead36ffbfae2b0af81910baea222930365be3 (patch) | |
tree | 412651ec4d4d5a5634f54755766e4216d066183c /gnu/usr.bin/cvs | |
parent | 37ad1f0cf4e7e1159aed4c1f2b14f27d9ad08147 (diff) |
Dummy out aclocal, autoconf, automake, and autoheader since there
are still things in cvs's Makefile.in files that will attempt to
run e.g. autoheader. Doing this here should mean we don't get hosed
again the next time cvs is updated.
I believe Marc Espie suggested something similar a while ago.
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 0eedb4cbbfb..2e489dc0726 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.37 2001/09/30 20:31:46 tholo Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.38 2001/11/21 15:35:38 millert Exp $ .include <bsd.own.mk> @@ -38,12 +38,14 @@ config: .FORCE -rm -f config.cache PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ + ACLOCAL=true AUTOCONF=true AUTOMAKE=true AUTOHEADER=true \ sh ${.CURDIR}/configure --prefix=/usr --mandir=/usr/share/man \ --datadir=/usr/libdata ${KRB} ${KRB5} ${CF} config.status: PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ + ACLOCAL=true AUTOCONF=true AUTOMAKE=true AUTOHEADER=true \ sh ${.CURDIR}/configure --prefix=/usr --mandir=/usr/share/man \ --datadir=/usr/libdata ${KRB} ${KRB5} ${CF} |