diff options
author | Julien Cristau <jcristau@debian.org> | 2008-04-20 19:46:18 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-04-20 19:46:18 +0200 |
commit | 7b16b32d15ea105a3ff77468cea8364193bbdf3c (patch) | |
tree | 3ff075eaabd101079ba8788ff0a7b47da85f4059 | |
parent | 7a6eb7af07301afa6024368544174765d9df0088 (diff) |
Fix build with builddir != srcdir
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 02f9104..b107e11 100644 --- a/Makefile.am +++ b/Makefile.am @@ -45,6 +45,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: + [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |