mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
Run xcodebuild from the right directory.
This commit is contained in:
parent
7428b48010
commit
f04f6933f6
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
# Use Xcode do make the actual build
|
# Use Xcode do make the actual build
|
||||||
all:
|
all:
|
||||||
@xcodebuild -alltargets -activeconfiguration | grep -v "^$$"
|
@(cd .. && xcodebuild -alltargets -activeconfiguration | grep -v "^$$")
|
||||||
clean:
|
clean:
|
||||||
@xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$"
|
@(cd .. && xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$")
|
||||||
|
|
||||||
define PACKAGE_RULE1
|
define PACKAGE_RULE1
|
||||||
$(RM) tmp "Transmission $(VERSION_PACKAGE)" \
|
$(RM) tmp "Transmission $(VERSION_PACKAGE)" \
|
||||||
|
|
Loading…
Reference in a new issue