diff options
author | Benoit Foucher <benoit@zeroc.com> | 2021-01-12 15:15:59 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2021-01-12 15:17:15 +0100 |
commit | 9086d4877f97c2fc1f19ecac8bc206f998f4bb9c (patch) | |
tree | e98431e92aedea60a820ce79aba12a03da931a43 | |
parent | Fix typo (diff) | |
download | ice-9086d4877f97c2fc1f19ecac8bc206f998f4bb9c.tar.bz2 ice-9086d4877f97c2fc1f19ecac8bc206f998f4bb9c.tar.xz ice-9086d4877f97c2fc1f19ecac8bc206f998f4bb9c.zip |
Fixed minor Xcode projet build warning
-rw-r--r-- | config/Make.xcodesdk.rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/Make.xcodesdk.rules b/config/Make.xcodesdk.rules index f80da94f922..4b19acc7fe9 100644 --- a/config/Make.xcodesdk.rules +++ b/config/Make.xcodesdk.rules @@ -51,8 +51,8 @@ endef # define make-xcode-project-with-config -$1/.translator.dep: $$($$($1_slicecompiler)_path) - $(Q)if [ -f $1/.translator.dep ]; \ +$1/.translator-$2-$3.dep: $$($$($1_slicecompiler)_path) + $(Q)if [ -f $1/.translator-$2-$3.dep ]; \ then \ xcodebuild -sdk $2 \ -project "$1/$$(call $1_project,$2,$3)" \ @@ -61,9 +61,9 @@ $1/.translator.dep: $$($$($1_slicecompiler)_path) $(if $(V),,-quiet) SYMROOT=./build-$2-$3 OBJROOT=./objs-$2-$3 \ clean; \ fi - touch $1/.translator.dep + touch $1/.translator-$2-$3.dep -$1[$2-$3]: $$($1_dependencies) $1/.translator.dep +$1[$2-$3]: $$($1_dependencies) $1/.translator-$2-$3.dep $(E) "Running xcodebuild for $1 scheme=\"$$(call $1_scheme,$2,$3)\"" $(Q)xcodebuild -sdk $2 \ -project "$1/$$(call $1_project,$2,$3)" \ |