From f426787beaad60cee9c116613ddde540c310038a Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Fri, 16 May 2008 14:25:24 +0200 Subject: $(builddir) is the current directory Apparently automake doesn't always export the builddir variable. This fixes my previous commit. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e9346fe..1c59ca3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,7 +56,7 @@ APPDEFAULTFILES = \ SUFFIXES = .ad .ad: - [ -d "$(builddir)/app-defaults" ] || mkdir "$(builddir)/app-defaults" + [ -d app-defaults ] || mkdir app-defaults cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) -- cgit v1.2.3