diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1998-02-15 01:40:00 +0800 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1998-02-15 01:40:00 +0800 |
commit | 8bd27da27373a135bbbed78a8361cabdbf1b0d9a (patch) | |
tree | a638684f3164eeac03591292390f2f210214041f /macros/Makefile.am | |
parent | 11202dff7a99e1f2f69c6e8071b0a205e56fd571 (diff) | |
download | gsoc2013-evolution-8bd27da27373a135bbbed78a8361cabdbf1b0d9a.tar.gz gsoc2013-evolution-8bd27da27373a135bbbed78a8361cabdbf1b0d9a.tar.zst gsoc2013-evolution-8bd27da27373a135bbbed78a8361cabdbf1b0d9a.zip |
Put back doubled `$'. We want the expansion to occur in the including
* Makefile.am (macros.dep): Put back doubled `$'. We want the
expansion to occur in the including Makefile, not here.
Otherwise, there will be an extra `../' in the rule.
- Hari
svn path=/trunk/; revision=34
Diffstat (limited to 'macros/Makefile.am')
-rw-r--r-- | macros/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/Makefile.am b/macros/Makefile.am index 6a6a609edc..0a3dab7047 100644 --- a/macros/Makefile.am +++ b/macros/Makefile.am @@ -7,4 +7,4 @@ EXTRA_DIST=$(MACROS) autogen.sh MAINTAINERCLEANFILES=macros.dep @MAINT@macros.dep: Makefile.am -@MAINT@ @echo "$(top_srcdir)/aclocal.m4: $(MACROS:%=macros/%)" > $@ +@MAINT@ @echo "$$(top_srcdir)/aclocal.m4: $(MACROS:%=macros/%)" > $@ |