diff options
author | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:20:03 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-05-18 13:23:25 +0200 |
commit | 59281ce7182a7fb679339af89a1dc72e0695b7ab (patch) | |
tree | b05ccd80485926f323e3c0ee6074a65b61e0ab2b /Makefile.am | |
parent | d6bf0deb5ad6b540246b23a46fa2b5d21cd9b02c (diff) |
$(builddir) is the current directory
Apparently automake doesn't always export the builddir variable.
This fixes my previous commit.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5ad3a06..963abbe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,7 +44,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: - [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" + [ -d app-defaults ] || mkdir app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |