Skip to content

Commit 5d8ab52

Browse files
authored
copy
1 parent aadc826 commit 5d8ab52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/build-gnu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ cd -
132132

133133
# Pass the feature flags to make, which will pass them to cargo
134134
"${MAKE}" MULTICALL=y PROFILE="${UU_MAKE_PROFILE}" CARGOFLAGS="${CARGO_FEATURE_FLAGS}"
135-
# Hardlink binaries
135+
# copy binaries
136136
for binary in $(${UU_BUILD_DIR}/coreutils --list); do
137-
(cd ${UU_BUILD_DIR} && ln -vf coreutils "$binary")
137+
(cd ${UU_BUILD_DIR} && cp -vf coreutils "$binary")
138138
done
139139
echo -e '#!/bin/sh\nexec $(dirname $0)/install "$@"' > "${UU_BUILD_DIR}/ginstall" && chmod +x "${UU_BUILD_DIR}/ginstall" # The GNU tests rename this script before running, to avoid confusion with the make target
140140
touch g

0 commit comments

Comments
 (0)