mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
[macOS] Fix Xcode warnings for non-incremental build script phases. (#3266)
This commit is contained in:
parent
ed394af4d6
commit
be092ebea6
1 changed files with 12 additions and 4 deletions
|
@ -2380,7 +2380,7 @@
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 4D18389B09DEC01E0047D688 /* Build configuration list for PBXNativeTarget "libtransmission" */;
|
buildConfigurationList = 4D18389B09DEC01E0047D688 /* Build configuration list for PBXNativeTarget "libtransmission" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
4DC4AA3D0B05673D0005DB76 /* ShellScript */,
|
4DC4AA3D0B05673D0005DB76 /* Generate version file */,
|
||||||
4D18389309DEC0030047D688 /* Headers */,
|
4D18389309DEC0030047D688 /* Headers */,
|
||||||
4D18389409DEC0030047D688 /* Sources */,
|
4D18389409DEC0030047D688 /* Sources */,
|
||||||
BE75C3860C72A1D300DBEFE0 /* Frameworks */,
|
BE75C3860C72A1D300DBEFE0 /* Frameworks */,
|
||||||
|
@ -2519,7 +2519,7 @@
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = BE75C34A0C729EB600DBEFE0 /* Build configuration list for PBXNativeTarget "event" */;
|
buildConfigurationList = BE75C34A0C729EB600DBEFE0 /* Build configuration list for PBXNativeTarget "event" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
BE75C3510C729EE100DBEFE0 /* ShellScript */,
|
BE75C3510C729EE100DBEFE0 /* Copy libevent headers */,
|
||||||
BE75C3450C729E9500DBEFE0 /* Headers */,
|
BE75C3450C729E9500DBEFE0 /* Headers */,
|
||||||
BE75C3460C729E9500DBEFE0 /* Sources */,
|
BE75C3460C729E9500DBEFE0 /* Sources */,
|
||||||
BE75C3470C729E9500DBEFE0 /* Frameworks */,
|
BE75C3470C729E9500DBEFE0 /* Frameworks */,
|
||||||
|
@ -2807,14 +2807,17 @@
|
||||||
/* End PBXResourcesBuildPhase section */
|
/* End PBXResourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXShellScriptBuildPhase section */
|
/* Begin PBXShellScriptBuildPhase section */
|
||||||
4DC4AA3D0B05673D0005DB76 /* ShellScript */ = {
|
4DC4AA3D0B05673D0005DB76 /* Generate version file */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
|
"$(SRCROOT)/CMakeLists.txt",
|
||||||
);
|
);
|
||||||
|
name = "Generate version file";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"$(SRCROOT)/libtransmission/version.h",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
|
@ -2836,14 +2839,19 @@
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "cd third-party/miniupnpc\nsh updateminiupnpcstrings.sh \"$SCRIPT_INPUT_FILE_0\" \"$SCRIPT_INPUT_FILE_1\" \"$SCRIPT_OUTPUT_FILE_0\"\n";
|
shellScript = "cd third-party/miniupnpc\nsh updateminiupnpcstrings.sh \"$SCRIPT_INPUT_FILE_0\" \"$SCRIPT_INPUT_FILE_1\" \"$SCRIPT_OUTPUT_FILE_0\"\n";
|
||||||
};
|
};
|
||||||
BE75C3510C729EE100DBEFE0 /* ShellScript */ = {
|
BE75C3510C729EE100DBEFE0 /* Copy libevent headers */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
|
"$(SRCROOT)/third-party/macosx-libevent-evconfig-private.h",
|
||||||
|
"$(SRCROOT)/third-party/macosx-libevent-event-config.h",
|
||||||
);
|
);
|
||||||
|
name = "Copy libevent headers";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
|
"$(SRCROOT)/third-party/libevent/evconfig-private.h",
|
||||||
|
"$(SRCROOT)/third-party/libevent/include/event2/event-config.h",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/bash;
|
shellPath = /bin/bash;
|
||||||
|
|
Loading…
Reference in a new issue