aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-09-21 13:21:56 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-22 09:51:25 +0000
commitae7be6f016933ca91c2dab3d6c4af785622b2988 (patch)
treeac2e0f677f018e7c7a0510207b985e8d7c93e97d /src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java
parente5da53c253ca5fafb60a8c1e598d3a147ac08efd (diff)
Replace BuildConfiguration.Fragment#collectExecutables() with a #getShellExecutable() method.
That's all it was used for anyway. -- MOS_MIGRATED_REVID=133824769
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java
index bb4826e242..db3ab654fd 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/LinkCommandLine.java
@@ -411,7 +411,7 @@ public final class LinkCommandLine extends CommandLine {
case DYNAMIC_LIBRARY:
if (interfaceOutput != null) {
- argv.add(configuration.getShExecutable().getPathString());
+ argv.add(configuration.getShellExecutable().getPathString());
argv.add("-c");
argv.add(
"build_iface_so=\"$0\"; impl=\"$1\"; iface=\"$2\"; cmd=\"$3\"; shift 3; "