colder Fri, 09 Jul 2010 12:19:52 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=301124
Log:
Fix exit code tests
Changed paths:
U php/php-src/branches/LEMON/Makefile.frag
U php/php-src/branches/LEMON/Zend/Makefile.am
Modified: php/php-src/branches/LEMON/Makefile.frag
===================================================================
--- php/php-src/branches/LEMON/Makefile.frag 2010-07-09 12:06:45 UTC (rev
301123)
+++ php/php-src/branches/LEMON/Makefile.frag 2010-07-09 12:19:52 UTC (rev
301124)
@@ -11,7 +11,7 @@
$(srcdir)/zend_language_parser.h: $(srcdir)/zend_language_parser.c
$(srcdir)/zend_language_parser.c: $(srcdir)/zend_language_parser.y
- @$(LEMON) -q -c $(srcdir)/zend_language_parser.y || test $? -eq 25
+ $(LEMON) -q -c $(srcdir)/zend_language_parser.y || test $$? -eq 25
$(srcdir)/zend_ini_parser.h: $(srcdir)/zend_ini_parser.c
$(srcdir)/zend_ini_parser.c: $(srcdir)/zend_ini_parser.y
Modified: php/php-src/branches/LEMON/Zend/Makefile.am
===================================================================
--- php/php-src/branches/LEMON/Zend/Makefile.am 2010-07-09 12:06:45 UTC (rev
301123)
+++ php/php-src/branches/LEMON/Zend/Makefile.am 2010-07-09 12:19:52 UTC (rev
301124)
@@ -35,7 +35,7 @@
zend_language_parser.h: zend_language_parser.c
zend_language_parser.c: $(srcdir)/zend_language_parser.y
- $(LEMON) -q -c $(srcdir)/zend_language_parser.y || test $? -eq 25
+ $(LEMON) -q -c $(srcdir)/zend_language_parser.y || test $$? -eq 25
# INI parser/scanner rules
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php