diff options
author | S. Davilla <davilla@4pi.com> | 2012-09-26 08:29:56 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2012-09-26 08:33:35 -0400 |
commit | 6a69092a0ece1edc3c3fbf787138b02cca852abf (patch) | |
tree | 9342f16d9ba20c56fbbc3a347f685bba45abbd37 /XBMC-ATV2.xcodeproj | |
parent | cdaec8eb533cc5a229c0908075565e708f1b7176 (diff) |
[osx/ios] fixed, do not run makefile scripts unless we are building
Diffstat (limited to 'XBMC-ATV2.xcodeproj')
-rw-r--r-- | XBMC-ATV2.xcodeproj/project.pbxproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XBMC-ATV2.xcodeproj/project.pbxproj b/XBMC-ATV2.xcodeproj/project.pbxproj index bfb0599149..8e9cc74b12 100644 --- a/XBMC-ATV2.xcodeproj/project.pbxproj +++ b/XBMC-ATV2.xcodeproj/project.pbxproj @@ -6565,7 +6565,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "make -C ${SRCROOT}/xbmc/interfaces/legacy"; + shellScript = "if [ \"$ACTION\" = build ] ; then\nmake -C ${SRCROOT}/xbmc/interfaces/legacy\nfi"; }; F502C0CA160F425200C96C76 /* Make interface-python */ = { isa = PBXShellScriptBuildPhase; @@ -6579,7 +6579,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "make -C ${SRCROOT}/xbmc/interfaces/python"; + shellScript = "if [ \"$ACTION\" = build ] ; then\nmake -C ${SRCROOT}/xbmc/interfaces/python\nfi"; }; F589B48B128A696700D8079E /* copy root files */ = { isa = PBXShellScriptBuildPhase; |