diff options
author | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:22:16 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:22:16 +0200 |
commit | 3dc6744ae0332efc9c4a621401c1257e4d4c3c6d (patch) | |
tree | ad43b6276021063c104b0e2985aa21f76a094a78 | |
parent | 3154399310460759466d66cb17e723548e205776 (diff) |
$(builddir) is the current directory
Apparently automake doesn't always export the builddir variable.
This fixes my previous commit.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index fc4856d..662d539 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,7 +73,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: - [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" + [ -d app-defaults ] || mkdir app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |