1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00

<automake hate mode>

Prevent Makefile from trying to run 644 missing script when no autoheader is
installed.
</automake hate mode>

Submitted by:	bento
This commit is contained in:
Maxim Sobolev 2001-03-12 09:32:29 +00:00
parent d4104bb3f3
commit eaa253e8f3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39636

View File

@ -0,0 +1,20 @@
$FreeBSD$
--- Makefile.in 2001/03/12 08:01:39 1.1
+++ Makefile.in 2001/03/12 08:02:46
@@ -42,10 +42,10 @@
top_builddir = .
-ACLOCAL = @ACLOCAL@
-AUTOCONF = @AUTOCONF@
-AUTOMAKE = @AUTOMAKE@
-AUTOHEADER = @AUTOHEADER@
+ACLOCAL = /usr/bin/true
+AUTOCONF = /usr/bin/true
+AUTOMAKE = /usr/bin/true
+AUTOHEADER = /usr/bin/true
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)