Skip to content

Commit 723626c

Browse files
committed
stat
1 parent c0f5979 commit 723626c

File tree

1 file changed

+5
-1
lines changed
  • test/starlark_tests/resources

1 file changed

+5
-1
lines changed

test/starlark_tests/resources/BUILD

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,11 @@ genrule(
13361336
name = "ccinfo_dylibs_mylib-shared-with-rpath",
13371337
srcs = [":ccinfo_dylibs_mylib-shared"],
13381338
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) $@",
1339+
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+
""",
13401344
)
13411345

13421346
# Import our dynamically linked library.

0 commit comments

Comments
 (0)