Ticket #4839: Makefile.in.patch

File Makefile.in.patch, 709 bytes (added by reilles@…, 19 years ago)

patch to fix build under tiger

  • Makefile.in

    old new ABQuery/sym/ABQuery: ABQuery/pbxbuild.sh 
    145146
    146147ABQuery/pbxbuild.sh:
    147148        if [ "$(XCODEBUILD)" != "no" ]; then \
    148                 (cd ABQuery; xcodebuild -buildstyle Deployment; printf '#!/bin/sh\nmkdir ABQuery/sym; cp ABQuery/build/ABQuery ABQuery/sym\n' > pbxbuild.sh; chmod a+x pbxbuild.sh) \
     149                (cd ABQuery; xcodebuild -buildstyle Deployment; printf '#!/bin/sh\nmkdir ABQuery/sym; if test -d ABQuery/build/Deployment; then cp ABQuery/build/Deployment/ABQuery ABQuery/sym; else cp ABQuery/build/ABQuery ABQuery/sym; fi\n' > pbxbuild.sh; chmod a+x pbxbuild.sh) \
    149150        else \
    150151                (cd ABQuery; pbxbuild -buildstyle Deployment export) \
    151152        fi