From 2d43b9d1c3e3632176fccdb5017b6e196b05b37a Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Fri, 16 May 2008 14:23:54 +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(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index b107e11..67faa6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -45,7 +45,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