Title: [120012] trunk
Revision
120012
Author
[email protected]
Date
2012-06-11 15:16:11 -0700 (Mon, 11 Jun 2012)

Log Message

.: Replace obsolete mkdir_p variable with MKDIR_P
https://bugs.webkit.org/show_bug.cgi?id=88790

Patch by Arnaud Renevier <[email protected]> on 2012-06-11
Reviewed by Martin Robinson.

* GNUmakefile.am:
* configure.ac:

Source/WebKit/gtk/po: Replace obsolete mkdir_p variables with MKDIR_P
https://bugs.webkit.org/show_bug.cgi?id=88790

Patch by Arnaud Renevier <[email protected]> on 2012-06-11
Reviewed by Martin Robinson.

* GNUmakefile.am:

Modified Paths

Diff

Modified: trunk/ChangeLog (120011 => 120012)


--- trunk/ChangeLog	2012-06-11 22:05:36 UTC (rev 120011)
+++ trunk/ChangeLog	2012-06-11 22:16:11 UTC (rev 120012)
@@ -1,3 +1,13 @@
+2012-06-11  Arnaud Renevier  <[email protected]>
+
+        Replace obsolete mkdir_p variable with MKDIR_P
+        https://bugs.webkit.org/show_bug.cgi?id=88790
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am:
+        * configure.ac:
+
 2012-06-11  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Fix make distcheck issues.

Modified: trunk/GNUmakefile.am (120011 => 120012)


--- trunk/GNUmakefile.am	2012-06-11 22:05:36 UTC (rev 120011)
+++ trunk/GNUmakefile.am	2012-06-11 22:16:11 UTC (rev 120012)
@@ -318,7 +318,7 @@
 # Older automake versions (1.7) place Plo files in a different place so we need
 # to create the output directory manually.
 all-local: stamp-po
-	$(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources
+	$(MKDIR_P) $(top_builddir)/$(DEPDIR)/DerivedSources
 
 # remove built sources and program directories
 clean-local:

Modified: trunk/Source/WebKit/gtk/po/ChangeLog (120011 => 120012)


--- trunk/Source/WebKit/gtk/po/ChangeLog	2012-06-11 22:05:36 UTC (rev 120011)
+++ trunk/Source/WebKit/gtk/po/ChangeLog	2012-06-11 22:16:11 UTC (rev 120012)
@@ -1,3 +1,12 @@
+2012-06-11  Arnaud Renevier  <[email protected]>
+
+        Replace obsolete mkdir_p variables with MKDIR_P
+        https://bugs.webkit.org/show_bug.cgi?id=88790
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am:
+
 2012-05-04  Daniel Mustieles  <[email protected]>
 
         Updated Spanish translation

Modified: trunk/Source/WebKit/gtk/po/GNUmakefile.am (120011 => 120012)


--- trunk/Source/WebKit/gtk/po/GNUmakefile.am	2012-06-11 22:05:36 UTC (rev 120011)
+++ trunk/Source/WebKit/gtk/po/GNUmakefile.am	2012-06-11 22:16:11 UTC (rev 120012)
@@ -140,13 +140,13 @@
 	$(top_builddir)/Source/WebKit/gtk/po/$(DOMAIN).pot
 
 po-install-data-local: all
-	$(mkdir_p) $(DESTDIR)$(datadir)
+	$(MKDIR_P) $(DESTDIR)$(datadir)
 	@catalogs='$(MOFILES)'; \
 	for cat in $$catalogs; do \
 	  cat=`basename $$cat`; \
 	  lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
 	  dir=$(localedir)/$$lang/LC_MESSAGES; \
-	  $(mkdir_p) $(DESTDIR)$$dir; \
+	  $(MKDIR_P) $(DESTDIR)$$dir; \
 	  if test -r Source/WebKit/gtk/po/$$cat; then realcat=Source/WebKit/gtk/po/$$cat; else realcat=$(srcdir)/$$cat; fi; \
 	  $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
 	  echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
@@ -181,13 +181,13 @@
 	done
 
 po-installdirs-data-local:
-	$(mkdir_p) $(DESTDIR)$(datadir)
+	$(MKDIR_P) $(DESTDIR)$(datadir)
 	@catalogs='$(MOFILES)'; \
 	for cat in $$catalogs; do \
 	  cat=`basename $$cat`; \
 	  lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
 	  dir=$(localedir)/$$lang/LC_MESSAGES; \
-	  $(mkdir_p) $(DESTDIR)$$dir; \
+	  $(MKDIR_P) $(DESTDIR)$$dir; \
 	  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
 	    if test -n "$$lc"; then \
 	      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \

Modified: trunk/configure.ac (120011 => 120012)


--- trunk/configure.ac	2012-06-11 22:05:36 UTC (rev 120011)
+++ trunk/configure.ac	2012-06-11 22:16:11 UTC (rev 120012)
@@ -1,4 +1,4 @@
-AC_PREREQ(2.59)
+AC_PREREQ(2.60)
 
 m4_define([webkit_major_version], [1])
 m4_define([webkit_minor_version], [9])
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to