We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef42b09 commit e17f8aaCopy full SHA for e17f8aa
test/starlark_tests/resources/BUILD
@@ -1336,7 +1336,11 @@ genrule(
1336
name = "ccinfo_dylibs_mylib-shared-with-rpath",
1337
srcs = [":ccinfo_dylibs_mylib-shared"],
1338
outs = ["libmylib_with_rpath.dylib"],
1339
- cmd = "install_name_tool -id @rpath/libmylib_with_rpath.dylib $(location :ccinfo_dylibs_mylib-shared) && cp $(location :ccinfo_dylibs_mylib-shared) $@",
+ cmd = """
1340
+stat $(location :ccinfo_dylibs_mylib-shared)
1341
+install_name_tool -id @rpath/libmylib_with_rpath.dylib $(location :ccinfo_dylibs_mylib-shared)
1342
+cp $(location :ccinfo_dylibs_mylib-shared) $@
1343
+""",
1344
)
1345
1346
# Import our dynamically linked library.
0 commit comments