diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-03-12 09:32:29 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-03-12 09:32:29 +0000 |
commit | eaa253e8f3cdf477ccaf8b660447f442e9e44740 (patch) | |
tree | 312a306e4d8600fafe1d96a7e00a906a0247cd47 /games/asc | |
parent | Fix breakage introduced with recent WindowMaker update. (diff) |
<automake hate mode>
Prevent Makefile from trying to run 644 missing script when no autoheader is
installed.
</automake hate mode>
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=39636
Diffstat (limited to 'games/asc')
-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) |