From f04f6933f65659b36b9bebce16dd6a10860c3f8a Mon Sep 17 00:00:00 2001 From: Josh Elsasser Date: Thu, 19 Jul 2007 02:04:52 +0000 Subject: [PATCH] Run xcodebuild from the right directory. --- macosx/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/Makefile.am b/macosx/Makefile.am index b986fee28..cf4ebb608 100644 --- a/macosx/Makefile.am +++ b/macosx/Makefile.am @@ -1,8 +1,8 @@ # Use Xcode do make the actual build all: - @xcodebuild -alltargets -activeconfiguration | grep -v "^$$" + @(cd .. && xcodebuild -alltargets -activeconfiguration | grep -v "^$$") clean: - @xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$" + @(cd .. && xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$") define PACKAGE_RULE1 $(RM) tmp "Transmission $(VERSION_PACKAGE)" \