Title: [164239] trunk/Source/WebCore
Revision
164239
Author
[email protected]
Date
2014-02-17 11:48:31 -0800 (Mon, 17 Feb 2014)

Log Message

[GTK] Build failure caused by missing jsmin module
https://bugs.webkit.org/show_bug.cgi?id=128742

Reviewed by Philippe Normand.

No new tests since no functionality changed.

* GNUmakefile.am: Relocate PYTHONPATH to make it meaningful.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164238 => 164239)


--- trunk/Source/WebCore/ChangeLog	2014-02-17 19:45:26 UTC (rev 164238)
+++ trunk/Source/WebCore/ChangeLog	2014-02-17 19:48:31 UTC (rev 164239)
@@ -1,3 +1,14 @@
+2014-02-17  ChangSeok Oh  <[email protected]>
+
+        [GTK] Build failure caused by missing jsmin module
+        https://bugs.webkit.org/show_bug.cgi?id=128742
+
+        Reviewed by Philippe Normand.
+
+        No new tests since no functionality changed.
+
+        * GNUmakefile.am: Relocate PYTHONPATH to make it meaningful.
+
 2014-02-17  Radu Stavila  <[email protected]>
 
         [CSS Regions] Make regions unsplittable

Modified: trunk/Source/WebCore/GNUmakefile.am (164238 => 164239)


--- trunk/Source/WebCore/GNUmakefile.am	2014-02-17 19:45:26 UTC (rev 164238)
+++ trunk/Source/WebCore/GNUmakefile.am	2014-02-17 19:48:31 UTC (rev 164239)
@@ -267,9 +267,8 @@
 
 USER_AGENT_SCRIPT_FILES = $(WebCore)/Modules/mediacontrols/mediaControlsApple.js $(WebCore)/Modules/mediacontrols/mediaControlsGtk.js
 DerivedSources/WebCore/UserAgentScriptsData.cpp: DerivedSources/WebCore/UserAgentScripts.h
-DerivedSources/WebCore/UserAgentScripts.h: PYTHONPATH=$(INSPECTOR_SCRIPTS_DIR)
 DerivedSources/WebCore/UserAgentScripts.h: $(WebCore)/Scripts/make-js-file-arrays.py $(USER_AGENT_SCRIPT_FILES)
-	$(AM_V_GEN)$(PYTHON) $< $@ DerivedSources/WebCore/UserAgentScriptsData.cpp $(USER_AGENT_SCRIPT_FILES)
+	$(AM_V_GEN) PYTHONPATH=$(INSPECTOR_SCRIPTS_DIR) $(PYTHON) $< $@ DerivedSources/WebCore/UserAgentScriptsData.cpp $(USER_AGENT_SCRIPT_FILES)
 
 # user agent style sheets
 USER_AGENT_STYLE_SHEETS = \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to