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-18 13:23:25 +0200
commit59281ce7182a7fb679339af89a1dc72e0695b7ab (patch)
treeb05ccd80485926f323e3c0ee6074a65b61e0ab2b
parentd6bf0deb5ad6b540246b23a46fa2b5d21cd9b02c (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 5ad3a06..963abbe 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -44,7 +44,7 @@ APPDEFAULTFILES = \
SUFFIXES = .ad
.ad:
- [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults"
+ [ -d app-defaults ] || mkdir app-defaults
cp $< $@
appdefault_DATA = $(APPDEFAULTFILES)