Title: [134075] trunk/Source/WebCore
Revision
134075
Author
[email protected]
Date
2012-11-09 09:09:06 -0800 (Fri, 09 Nov 2012)

Log Message

2012-11-09  Xan Lopez  <[email protected]>

        [GTK] Do not use 'ls' to list IDL files in EXTRA_DIST
        https://bugs.webkit.org/show_bug.cgi?id=101581

        Reviewed by Martin Robinson.

        Use normal GNU Make wildcards instead of 'ls' to list files in
        EXTRA_DIST, it's safer and more straightforward.

        * GNUmakefile.am: ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134074 => 134075)


--- trunk/Source/WebCore/ChangeLog	2012-11-09 16:55:33 UTC (rev 134074)
+++ trunk/Source/WebCore/ChangeLog	2012-11-09 17:09:06 UTC (rev 134075)
@@ -1,3 +1,15 @@
+2012-11-09  Xan Lopez  <[email protected]>
+
+        [GTK] Do not use 'ls' to list IDL files in EXTRA_DIST
+        https://bugs.webkit.org/show_bug.cgi?id=101581
+
+        Reviewed by Martin Robinson.
+
+        Use normal GNU Make wildcards instead of 'ls' to list files in
+        EXTRA_DIST, it's safer and more straightforward.
+
+        * GNUmakefile.am: ditto.
+
 2012-11-09  Charles Wei  <[email protected]>
 
         Need to clear exception in JSDictionary that might have been caused by previous operation.

Modified: trunk/Source/WebCore/GNUmakefile.am (134074 => 134075)


--- trunk/Source/WebCore/GNUmakefile.am	2012-11-09 16:55:33 UTC (rev 134074)
+++ trunk/Source/WebCore/GNUmakefile.am	2012-11-09 17:09:06 UTC (rev 134075)
@@ -718,35 +718,34 @@
 	$(XT_CFLAGS)
 
 EXTRA_DIST += \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/filesystem/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/gamepad/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/geolocation/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/indexeddb/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/mediasource/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/mediastream/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/navigatorcontentutils/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/notifications/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/quota/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/webaudio/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/webdatabase/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/Modules/websockets/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/css/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/dom/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/editing/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/fileapi/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/html/canvas/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/html/shadow/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/html/track/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/html/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/inspector/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/loader/appcache/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/page/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/plugins/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/storage/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/svg/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/testing/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/workers/*.idl) \
-	$(shell ls $(srcdir)/Source/WebCore/xml/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/filesystem/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/gamepad/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/geolocation/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/indexeddb/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/mediasource/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/mediastream/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/navigatorcontentutils/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/notifications/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/quota/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/webaudio/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/webdatabase/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/Modules/websockets/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/css/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/dom/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/fileapi/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/html/canvas/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/html/shadow/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/html/track/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/html/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/inspector/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/loader/appcache/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/page/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/plugins/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/storage/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/svg/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/testing/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/workers/*.idl) \
+	$(wildcard $(srcdir)/Source/WebCore/xml/*.idl) \
 	Source/ThirdParty/ANGLE/src/compiler/glslang.l \
 	Source/ThirdParty/ANGLE/src/compiler/glslang.y \
 	Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to