From: Matthias Clasen Date: Fri, 9 Nov 2007 01:33:40 +0000 (+0000) Subject: Use MKDIRS_P instead of mkinstalldirs. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=11c7634af35ea33d884c4b54dfd302d7a1a74ab7;p=dana%2Fcg-glib.git Use MKDIRS_P instead of mkinstalldirs. 2007-11-08 Matthias Clasen * Makefile.am: Use MKDIRS_P instead of mkinstalldirs. svn path=/trunk/; revision=5829 --- diff --git a/ChangeLog b/ChangeLog index 2296fc74..9b7058ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-11-08 Matthias Clasen + + * Makefile.am: Use MKDIRS_P instead of mkinstalldirs. + 2007-11-08 Matthias Clasen * glib/gmarkup.h: Include gslist.h. Pointed out by Michael Natterer. diff --git a/Makefile.am b/Makefile.am index e129296b..38c719c4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,7 @@ configexecincludedir = $(libdir)/glib-2.0/include #configexecinclude_DATA = glibconfig.h install-exec-local: glibconfig.h - $(mkinstalldirs) $(DESTDIR)$(configexecincludedir) + $(MKDIR_P) $(DESTDIR)$(configexecincludedir) file=$(DESTDIR)$(configexecincludedir)/glibconfig.h; \ if test -r $$file && cmp -s glibconfig.h $$file; then :; \ else $(INSTALL_DATA) glibconfig.h $$file; fi