1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 08:05:52 +01:00

Change Mac script paths to be in-app

This commit is contained in:
James Crook
2016-12-12 18:48:45 +00:00
parent c493e38a68
commit 964a2e0653
3 changed files with 9 additions and 9 deletions

View File

@@ -1433,7 +1433,7 @@
2892CE28131AFB1900E1E17D /* Install miscellany */ = { 2892CE28131AFB1900E1E17D /* Install miscellany */ = {
isa = PBXCopyFilesBuildPhase; isa = PBXCopyFilesBuildPhase;
buildActionMask = 8; buildActionMask = 8;
dstPath = /Audacity; dstPath = /Audacity/Audacity.app/Contents;
dstSubfolderSpec = 0; dstSubfolderSpec = 0;
files = ( files = (
28006FFC132C169700BD34D7 /* Install.txt in Install miscellany */, 28006FFC132C169700BD34D7 /* Install.txt in Install miscellany */,
@@ -6775,7 +6775,7 @@
); );
name = "Copy nyquist"; name = "Copy nyquist";
outputPaths = ( outputPaths = (
"$(TARGET_BUILD_DIR)/nyquist", "$(TARGET_BUILD_DIR)/Audacity.app/Contents/nyquist",
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
@@ -6791,7 +6791,7 @@
); );
name = "Copy plug-ins"; name = "Copy plug-ins";
outputPaths = ( outputPaths = (
"$(TARGET_BUILD_DIR)/plug-ins", "$(TARGET_BUILD_DIR)/Audacity.app/Contents/plug-ins",
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;

View File

@@ -97,17 +97,17 @@ function installAction
case "${ACTION}" in case "${ACTION}" in
"" | build) "" | build)
TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/plug-ins" TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/Audacity.app/Contents/plug-ins"
buildAction buildAction
;; ;;
install) install)
TARGET_BUILD_DIR="${DSTROOT}/Audacity/plug-ins" TARGET_BUILD_DIR="${DSTROOT}/Audacity/Audacity.app/Contents/plug-ins"
installAction installAction
;; ;;
clean) clean)
TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/plug-ins" TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/Audacity.app/Contents/plug-ins"
cleanAction cleanAction
;; ;;
esac esac

View File

@@ -43,17 +43,17 @@ function installAction
case "${ACTION}" in case "${ACTION}" in
"" | build) "" | build)
TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/help/manual" TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/Audacity.app/Contents/help/manual"
buildAction buildAction
;; ;;
install) install)
TARGET_BUILD_DIR="${DSTROOT}/Audacity/help/manual" TARGET_BUILD_DIR="${DSTROOT}/Audacity/Audacity.app/Contents/help/manual"
installAction installAction
;; ;;
clean) clean)
TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/help/manual" TARGET_BUILD_DIR="${TARGET_BUILD_DIR}/Audacity.app/Contents/help/manual"
cleanAction cleanAction
;; ;;
esac esac