Title: [169905] trunk/Source/WebKit2
Revision
169905
Author
[email protected]
Date
2014-06-12 12:07:27 -0700 (Thu, 12 Jun 2014)

Log Message

Fixed a harmless error message when rewrite-availability-macros.sh is run in a clean build.

Rubber-stamped by Anders Carlsson.

* mac/rewrite-availability-macros.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169904 => 169905)


--- trunk/Source/WebKit2/ChangeLog	2014-06-12 18:50:18 UTC (rev 169904)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-12 19:07:27 UTC (rev 169905)
@@ -1,3 +1,11 @@
+2014-06-12  Dan Bernstein  <[email protected]>
+
+        Fixed a harmless error message when rewrite-availability-macros.sh is run in a clean build.
+
+        Rubber-stamped by Anders Carlsson.
+
+        * mac/rewrite-availability-macros.sh:
+
 2014-06-12  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Remove view mode API

Modified: trunk/Source/WebKit2/mac/rewrite-availability-macros.sh (169904 => 169905)


--- trunk/Source/WebKit2/mac/rewrite-availability-macros.sh	2014-06-12 18:50:18 UTC (rev 169904)
+++ trunk/Source/WebKit2/mac/rewrite-availability-macros.sh	2014-06-12 19:07:27 UTC (rev 169905)
@@ -30,7 +30,7 @@
 
 TIMESTAMP_PATH=${TARGET_TEMP_DIR}/${0##*/}
 
-if [[ $0 -nt $TIMESTAMP_PATH ]]; then
+if [[ -e $TIMESTAMP_PATH && $0 -nt $TIMESTAMP_PATH ]]; then
     rm "${TIMESTAMP_PATH}";
 fi
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to