Re: Jambase/pbxcp and Subversion
Re: Jambase/pbxcp and Subversion
- Subject: Re: Jambase/pbxcp and Subversion
- From: David DeHaven <email@hidden>
- Date: Wed, 29 Sep 2004 09:18:43 -0500
Ended up doing the same, but added a check to see if the -exclude arg
is already there (because I'm anal about things):
#!/bin/bash
EXARG=""
# check if the -exclude .svn argument is already there
echo $@ | grep "-exclude .svn" > /dev/null
if [ $? -eq 1 ]; then
EXARG="-exclude .svn"
fi
/Developer/Tools/pbxcp.real $EXARG "$@"
-DrD-
David,
I had this question myself, and a few weeks ago on this list we came
up with this workaround to exlude .svn directories from the build.
cat /Developer/Tools/pbxcp
#!/bin/bash
/Developer/Tools/pbxcp.orig -exclude .svn "$@"
-- Simon
On Mon, 27 Sep 2004 20:00:19 +0100, Finlay Dobbie <email@hidden>
wrote:
On 27 Sep 2004, at 19:54, David DeHaven wrote:
Yet, whenever I build with either xcodebuild or in XCode directly, I
only see "-exclude CVS" in the command line arguments for pbxcp, as
if
it's ignoring my changes to Jambase.
Xcode "native" targets don't use jam. You can't customise their
behaviour, it's all hard-coded into the frameworks AFAIK.
-- Finlay
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
email@hidden
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden