Use single quotes, not double quotes. Otherwise bash will interpret

Sat Feb 14 12:45:35 1998  Tom Tromey  <tromey@cygnus.com>

        * Makefile.am (macros.dep): Use single quotes, not double quotes.
        Otherwise bash will interpret `$(...)' incorrectly.
        (EXTRA_DIST): Include macros.dep in distribution.

svn path=/trunk/; revision=35
This commit is contained in:
Tom Tromey
1998-02-14 22:06:12 +00:00
committed by Tom Tromey
parent 8bd27da273
commit 1b06b7d231
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Sat Feb 14 12:45:35 1998 Tom Tromey <tromey@cygnus.com>
* Makefile.am (macros.dep): Use single quotes, not double quotes.
Otherwise bash will interpret `$(...)' incorrectly.
(EXTRA_DIST): Include macros.dep in distribution.
1998-02-14 Raja R Harinath <harinath@cs.umn.edu>
* Makefile.am (macros.dep): Put back doubled `$'. We want the

View File

@ -3,8 +3,8 @@ MACROS= aclocal-include.m4 gnome-guile-checks.m4 \
gnome-objc-checks.m4 gnome-x-checks.m4 \
gnome-support.m4 gnome.m4
EXTRA_DIST=$(MACROS) autogen.sh
EXTRA_DIST=$(MACROS) autogen.sh macros.dep
MAINTAINERCLEANFILES=macros.dep
@MAINT@macros.dep: Makefile.am
@MAINT@ @echo "$$(top_srcdir)/aclocal.m4: $(MACROS:%=macros/%)" > $@
@MAINT@ @echo '$$(top_srcdir)/aclocal.m4: $(MACROS:%=macros/%)' > $@