1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-03 22:19:07 +02: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 */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 8;
dstPath = /Audacity;
dstPath = /Audacity/Audacity.app/Contents;
dstSubfolderSpec = 0;
files = (
28006FFC132C169700BD34D7 /* Install.txt in Install miscellany */,
@ -6775,7 +6775,7 @@
);
name = "Copy nyquist";
outputPaths = (
"$(TARGET_BUILD_DIR)/nyquist",
"$(TARGET_BUILD_DIR)/Audacity.app/Contents/nyquist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@ -6791,7 +6791,7 @@
);
name = "Copy plug-ins";
outputPaths = (
"$(TARGET_BUILD_DIR)/plug-ins",
"$(TARGET_BUILD_DIR)/Audacity.app/Contents/plug-ins",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;

View File

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

View File

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