summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.am2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2296fc740..9b7058cee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2007-11-08 Matthias Clasen <mclasen@redhat.com>
+ * Makefile.am: Use MKDIRS_P instead of mkinstalldirs.
+
+2007-11-08 Matthias Clasen <mclasen@redhat.com>
+
* glib/gmarkup.h: Include gslist.h. Pointed out by Michael Natterer.
2007-11-08 Matthias Clasen <mclasen@redhat.com>
diff --git a/Makefile.am b/Makefile.am
index e129296b8..38c719c46 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