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:23:08 +0200 |
commit | e8360958ef3dba1e7ab8282c5055b0ccf5650f1c (patch) | |
tree | c722f525002ed9e9ea8a22b03fb4bc166c50ce12 /Makefile.am | |
parent | d3849e5474e65d2cf4212118896883330752c763 (diff) |
$(builddir) is the current directory
Apparently automake doesn't always export the builddir variable.
This fixes my previous commit.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
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) |