diff options
author | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:20:03 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-05-16 14:22:37 +0200 |
commit | 332e17ae6ebec0dbb7c13d63dd4758cb2979bcdc (patch) | |
tree | 2a67d92b81c15817ec3a8ee20d8c8773554224db | |
parent | 3b8c583e5a3d8733419cf5517d22b40f31c93e4c (diff) |
$(builddir) is the current directory
Apparently automake doesn't always export the builddir variable.
This fixes my previous commit.
-rw-r--r-- | Makefile.am | 2 |
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) |