diff options
author | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:23:54 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:23:54 +0200 |
commit | 2d43b9d1c3e3632176fccdb5017b6e196b05b37a (patch) | |
tree | 465f479431105d6bad008b177d8681bc77abb77e | |
parent | 7b16b32d15ea105a3ff77468cea8364193bbdf3c (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 b107e11..67faa6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -45,7 +45,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: - [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" + [ -d app-defaults ] || mkdir app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |