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:22:37 +0200
commit332e17ae6ebec0dbb7c13d63dd4758cb2979bcdc (patch)
tree2a67d92b81c15817ec3a8ee20d8c8773554224db
parent3b8c583e5a3d8733419cf5517d22b40f31c93e4c (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 32e1d14..8f08bc8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,7 +53,7 @@ EXTRA_DIST = $(APPDEFAULTFILES:%=%.ad) ChangeLog autogen.sh
SUFFIXES = .ad
.ad:
- [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults"
+ [ -d app-defaults ] || mkdir app-defaults
cp $< $@
appdefault_DATA = $(APPDEFAULTFILES)