mirror of
https://github.com/transmission/transmission
synced 2025-03-04 02:28:03 +00:00
Fix up creation of third-party include directories symlinks
This commit is contained in:
parent
3aa25a6d80
commit
dcc9a4308b
1 changed files with 4 additions and 5 deletions
|
@ -2200,7 +2200,6 @@
|
||||||
A2E57B9C13109DC200A7DAB1 /* FilterBar.xib in Resources */,
|
A2E57B9C13109DC200A7DAB1 /* FilterBar.xib in Resources */,
|
||||||
A220AF7B13D7CC460035C512 /* GlobalOptionsPopover.xib in Resources */,
|
A220AF7B13D7CC460035C512 /* GlobalOptionsPopover.xib in Resources */,
|
||||||
F63480631E1D7274005B9E09 /* Images.xcassets in Resources */,
|
F63480631E1D7274005B9E09 /* Images.xcassets in Resources */,
|
||||||
C15320211C82602500CC21E2 /* Info.plist in Resources */,
|
|
||||||
A2451E6A16ACE4EB00586E0E /* FileRenameSheetController.xib in Resources */,
|
A2451E6A16ACE4EB00586E0E /* FileRenameSheetController.xib in Resources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
@ -2268,11 +2267,11 @@
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
);
|
);
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
"$(SRCROOT)/third-party/miniupnpc/miniupnpc",
|
"$(SRCROOT)/third-party/miniupnpc/miniupnp",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "cd third-party/miniupnpc\nln -s . miniupnp";
|
shellScript = "cd third-party/miniupnpc && rm -f miniupnp && ln -s . miniupnp";
|
||||||
};
|
};
|
||||||
C12F197D1E1AE6830005E93F /* ShellScript */ = {
|
C12F197D1E1AE6830005E93F /* ShellScript */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
@ -2286,7 +2285,7 @@
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "cd third-party/libutp\nln -s . libutp";
|
shellScript = "cd third-party/libutp && rm -f libutp && ln -s . libutp";
|
||||||
};
|
};
|
||||||
C12F197E1E1AE6D50005E93F /* ShellScript */ = {
|
C12F197E1E1AE6D50005E93F /* ShellScript */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
@ -2300,7 +2299,7 @@
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "cd third-party/dht\nln -s . dht";
|
shellScript = "cd third-party/dht && rm -f dht && ln -s . dht";
|
||||||
};
|
};
|
||||||
/* End PBXShellScriptBuildPhase section */
|
/* End PBXShellScriptBuildPhase section */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue