diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-14 18:27:38 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-06-14 18:27:38 +0100 |
commit | 08009805345b1e8c411578c84ac7e43d00f67357 (patch) | |
tree | b10be97ef6080f1c2c0a0fa59bc84dfc054a3295 /helpers/lh_binary_includes | |
parent | 0371778301e38fa4bfe129e3f2ffdc9585d4b375 (diff) | |
download | vyos-live-build-08009805345b1e8c411578c84ac7e43d00f67357.tar.gz vyos-live-build-08009805345b1e8c411578c84ac7e43d00f67357.zip |
Revert always deferencing symlinks when installing some binary includes.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers/lh_binary_includes')
-rwxr-xr-x | helpers/lh_binary_includes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_includes b/helpers/lh_binary_includes index fc5ff5fd7..ba628efea 100755 --- a/helpers/lh_binary_includes +++ b/helpers/lh_binary_includes @@ -118,13 +118,13 @@ then if [ -d "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install ] && \ ls "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install/* > /dev/null 2>&1 then - cp -r -L ${CP_OPTIONS} "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install/* binary + cp -r ${CP_OPTIONS} "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install/* binary fi if [ -d "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install."${ARCH}" ] && \ ls "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install."${ARCH}"/* > /dev/null 2>&1 then - cp -r -L ${CP_OPTIONS} "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install."${ARCH}"/* binary + cp -r ${CP_OPTIONS} "${LH_INCLUDES}"/"${LH_DISTRIBUTION}"/install."${ARCH}"/* binary fi # Adjusting install templates |