You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2012/08/03 16:11:51 UTC

ios commit: Fix typo in Makefile.

Updated Branches:
  refs/heads/master 24ef5ea72 -> fe006aea3


Fix typo in Makefile.

within an if block: @mv -> mv


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/fe006aea
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/fe006aea
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/fe006aea

Branch: refs/heads/master
Commit: fe006aea3cd4c1f8b07cb265e70a636239f850c5
Parents: 24ef5ea
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Aug 3 10:10:19 2012 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Fri Aug 3 10:10:19 2012 -0400

----------------------------------------------------------------------
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/fe006aea/Makefile
----------------------------------------------------------------------
diff --git a/Makefile b/Makefile
index 425c14a..fe8c857 100644
--- a/Makefile
+++ b/Makefile
@@ -74,7 +74,7 @@ install: check-utils clean update-template
 		@defaults write com.apple.dt.Xcode IDESourceTreeDisplayNames -dict-add CORDOVALIB ""
 		@# rename the existing Xcode 4 template
 		@if [ -d $(EXISTING_XCODE4_TEMPLATE) ]; then \
-				@mv $(EXISTING_XCODE4_TEMPLATE) $(RENAMED_XCODE4_TEMPLATE) ; \
+				mv $(EXISTING_XCODE4_TEMPLATE) $(RENAMED_XCODE4_TEMPLATE) ; \
 		fi
 		@make clean
 		@echo -e "CordovaLib installed at: \033[33m$(CORDOVA_LIB)\033[m";