From 3dc6744ae0332efc9c4a621401c1257e4d4c3c6d Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Fri, 16 May 2008 14:22:16 +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 fc4856d..662d539 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,7 +73,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