Title: [92896] trunk/Tools
- Revision
- 92896
- Author
- [email protected]
- Date
- 2011-08-11 17:45:08 -0700 (Thu, 11 Aug 2011)
Log Message
Rework some Makefile logic to remove a double-negative.
Reviewed by Jon Honeycutt.
* DumpRenderTree/mac/PerlSupport/Makefile:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (92895 => 92896)
--- trunk/Tools/ChangeLog 2011-08-12 00:22:52 UTC (rev 92895)
+++ trunk/Tools/ChangeLog 2011-08-12 00:45:08 UTC (rev 92896)
@@ -1,3 +1,11 @@
+2011-08-11 Mark Rowe <[email protected]>
+
+ Rework some Makefile logic to remove a double-negative.
+
+ Reviewed by Jon Honeycutt.
+
+ * DumpRenderTree/mac/PerlSupport/Makefile:
+
2011-08-11 Anders Carlsson <[email protected]>
Add a FIXME.
Modified: trunk/Tools/DumpRenderTree/mac/PerlSupport/Makefile (92895 => 92896)
--- trunk/Tools/DumpRenderTree/mac/PerlSupport/Makefile 2011-08-12 00:22:52 UTC (rev 92895)
+++ trunk/Tools/DumpRenderTree/mac/PerlSupport/Makefile 2011-08-12 00:45:08 UTC (rev 92896)
@@ -32,14 +32,14 @@
PERL=/usr/bin/perl
OSX_VERSION = $(shell sw_vers -productVersion | cut -d. -f 2)
-ifeq "$(OSX_VERSION)" "4"
-GENERATE_WRAPPER = NO
+ifeq "$(OSX_VERSION)" "5"
+GENERATE_WRAPPER = YES
endif
-ifeq "$(OSX_VERSION)" "7"
+ifeq "$(OSX_VERSION)" "6"
GENERATE_WRAPPER = NO
endif
-ifneq "$(GENERATE_WRAPPER)" "NO"
+ifeq "$(GENERATE_WRAPPER)" "YES"
SWIG=/usr/bin/swig
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes