pkgs/applications/version-management/git-and-tools/git/default.nix: dropped 'set -x' from builder script
svn path=/nixpkgs/trunk/; revision=17903
This commit is contained in:
parent
2139d48872
commit
4cf582c570
@ -82,11 +82,11 @@ stdenv.mkDerivation rec {
|
|||||||
d="$out/etc/bash_completion.d"
|
d="$out/etc/bash_completion.d"
|
||||||
ensureDir $d; cp contrib/completion/git-completion.bash "$d"
|
ensureDir $d; cp contrib/completion/git-completion.bash "$d"
|
||||||
''
|
''
|
||||||
# Don't know why hardlinks aren't created. git installs the same executable multiple times into $out
|
# Don't know why hardlinks aren't created. git installs the same executable
|
||||||
# so replace duplicates by symlinks because I haven't tested whether the nix
|
# multiple times into $out so replace duplicates by symlinks because I
|
||||||
# distribution system can handle hardlinks. This reduces the size of $out from 115MB down to 13MB on x86_64-linux!
|
# haven't tested whether the nix distribution system can handle hardlinks.
|
||||||
|
# This reduces the size of $out from 115MB down to 13MB on x86_64-linux!
|
||||||
+ ''#
|
+ ''#
|
||||||
set -x
|
|
||||||
declare -A seen
|
declare -A seen
|
||||||
find $out -type f | while read f; do
|
find $out -type f | while read f; do
|
||||||
sum=$(md5sum "$f");
|
sum=$(md5sum "$f");
|
||||||
|
Loading…
Reference in New Issue
Block a user