Changeset 52 for trunk/prepare.devel
- Timestamp:
- 2006-05-31T03:20:18+02:00 (7 years ago)
- File:
-
- 1 edited
-
trunk/prepare.devel (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/prepare.devel
r43 r52 1 #! /bin/bash1 #! /bin/bash 2 2 SELF="$0" 3 3 … … 41 41 42 42 make_const_string_opcodes_php5.0.h() { 43 precheck const_string_opcodes_php5.0.h "${PHP5_0_DIR}/Zend/zend_ vm_def.h"&& "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O"43 precheck const_string_opcodes_php5.0.h "${PHP5_0_DIR}/Zend/zend_compile.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O" 44 44 } 45 45 … … 76 76 77 77 precheck() { 78 if ! test -e "$2" ; then78 if test -e "$2" ; then :; else 79 79 error X skipping "$1" because "$2" not found 80 80 return 1 81 81 fi 82 if ! test "$1" -ot "$2" ; then82 if test "$1" -ot "$2" ; then :; else 83 83 echo O "$1" is up to date. 84 84 return 1
Note: See TracChangeset
for help on using the changeset viewer.

