summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2008-05-16 14:20:03 +0200
committerJulien Cristau <jcristau@debian.org>2008-05-16 14:23:08 +0200
commite8360958ef3dba1e7ab8282c5055b0ccf5650f1c (patch)
treec722f525002ed9e9ea8a22b03fb4bc166c50ce12
parentd3849e5474e65d2cf4212118896883330752c763 (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 6ff9647..84fa6d9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,7 +46,7 @@ APPDEFAULTFILES = \
SUFFIXES = .ad
.ad:
- [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults"
+ [ -d app-defaults ] || mkdir app-defaults
cp $< $@
appdefault_DATA = $(APPDEFAULTFILES)