Lines Matching refs:patchfile

44 	for patchfile in $(AEP_Patches); do \
45 patch -p0 -i $(SRCROOT)/patches/$$patchfile || exit 1; \
47 find . \( -name \*.h -or -name \*.m \) -print0 | xargs -0 egrep -l 'CGFLOAT_DEFINED|NSINTEGER_DEFINED' | while read patchfile; do \
48 mv -f "$$patchfile" "$$patchfile.orig" && \
49 { unifdef -DCGFLOAT_DEFINED -DNSINTEGER_DEFINED "$$patchfile.orig" > "$$patchfile" || [ $$? -ne 2 ]; } && \
50 rm -f "$$patchfile.orig" || exit 1; \
52 find . -name pyobjc_setup.py -print0 | xargs -0 egrep -l 'CGFLOAT_DEFINED|NSINTEGER_DEFINED' | while read patchfile; do \
53 mv -f "$$patchfile" "$$patchfile.orig" && \
54 { unifdef -t -DCGFLOAT_DEFINED -DNSINTEGER_DEFINED "$$patchfile.orig" > "$$patchfile" || [ $$? -ne 2 ]; } && \
55 rm -f "$$patchfile.orig" && \
56 ed - "$$patchfile" < '$(SRCROOT)/patches/pyobjc_setup.py.ed' || exit 1; \
58 find . -name \*.bridgesupport -print0 | xargs -0 fgrep -l "tollfree='NSCF" | while read patchfile; do \
59 mv -f "$$patchfile" "$$patchfile.orig" && \
60 sed "s/tollfree='NSCF/tollfree='__NSCF/" "$$patchfile.orig" > "$$patchfile" && \
61 rm -f "$$patchfile.orig" || exit 1; \
63 find . -type f -print0 | xargs -0 grep -lw iChat | while read patchfile; do \
64 mv -f "$$patchfile" "$$patchfile.orig" && \
65 sed 's/[[:<:]]iChat[[:>:]]/Messages/g' "$$patchfile.orig" > "$$patchfile" && \
66 rm -f "$$patchfile.orig" || exit 1; \
68 find . -name \*setup.py -print0 | xargs -0 fgrep -l ".extend(['-isysroot'," | while read patchfile; do \
69 ed - "$$patchfile" < '$(SRCROOT)/patches/isysroot.ed' || exit 1; \