summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2008-05-16 14:25:24 +0200
committerJulien Cristau <jcristau@debian.org>2008-05-16 14:25:24 +0200
commitf426787beaad60cee9c116613ddde540c310038a (patch)
tree3693090193ee926eb778adf315f4e30272223c52
parent7c427dcbce96d6cb445ed73e08805524b593e1ea (diff)
$(builddir) is the current directory
Apparently automake doesn't always export the builddir variable. This fixes my previous commit.
-rw-r--r--Makefile.am2
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)