diff options
author | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:25:24 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:25:24 +0200 |
commit | f426787beaad60cee9c116613ddde540c310038a (patch) | |
tree | 3693090193ee926eb778adf315f4e30272223c52 | |
parent | 7c427dcbce96d6cb445ed73e08805524b593e1ea (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 e9346fe..1c59ca3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,7 +56,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: - [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" + [ -d app-defaults ] || mkdir app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |