stdenv lib64-moving: fail instead of overwriting
Silent overwriting is dangerous and it bit us straightaway on gcc_multi. https://github.com/NixOS/nixpkgs/commit/51f1b4ec48d5
This commit is contained in:
parent
581721887d
commit
8e44ae5bd4
@ -3,6 +3,7 @@
|
|||||||
# $output/lib. The rationale is that lib64 directories are unnecessary
|
# $output/lib. The rationale is that lib64 directories are unnecessary
|
||||||
# in Nix (since 32-bit and 64-bit builds of a package are in different
|
# in Nix (since 32-bit and 64-bit builds of a package are in different
|
||||||
# store paths anyway).
|
# store paths anyway).
|
||||||
|
# If the move would overwrite anything, it should fail on rmdir.
|
||||||
|
|
||||||
fixupOutputHooks+=(_moveLib64)
|
fixupOutputHooks+=(_moveLib64)
|
||||||
|
|
||||||
@ -13,7 +14,7 @@ _moveLib64() {
|
|||||||
mkdir -p $prefix/lib
|
mkdir -p $prefix/lib
|
||||||
shopt -s dotglob
|
shopt -s dotglob
|
||||||
for i in $prefix/lib64/*; do
|
for i in $prefix/lib64/*; do
|
||||||
mv "$i" $prefix/lib
|
mv --no-clobber "$i" $prefix/lib
|
||||||
done
|
done
|
||||||
shopt -u dotglob
|
shopt -u dotglob
|
||||||
rmdir $prefix/lib64
|
rmdir $prefix/lib64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user