diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-12 17:32:29 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-12 17:32:29 +0800 |
commit | e9548b1e04a8c04331fdc3ab3d48cb97ce86d3b3 (patch) | |
tree | ec24e0e94a08a127d0cf1b2a8f38330d59ea8399 | |
parent | 9517b0acb8d65d090980bdacb7456091fad8bc58 (diff) | |
download | freebsd-ports-gnome-e9548b1e04a8c04331fdc3ab3d48cb97ce86d3b3.tar.gz freebsd-ports-gnome-e9548b1e04a8c04331fdc3ab3d48cb97ce86d3b3.tar.zst freebsd-ports-gnome-e9548b1e04a8c04331fdc3ab3d48cb97ce86d3b3.zip |
<automake hate mode>
Prevent Makefile from trying to run 644 missing script when no autoheader is
installed.
</automake hate mode>
Submitted by: bento
-rw-r--r-- | games/asc/files/patch-Makefile.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games/asc/files/patch-Makefile.in b/games/asc/files/patch-Makefile.in new file mode 100644 index 000000000000..67438d675b17 --- /dev/null +++ b/games/asc/files/patch-Makefile.in @@ -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) |