* Forgotten.

svn path=/nixpkgs/trunk/; revision=2262
This commit is contained in:
Eelco Dolstra 2005-02-21 20:40:51 +00:00
parent ecd2596677
commit 5f3c1f22ce

View File

@ -0,0 +1,9 @@
cd $out
chmod -R +w .
find . -type f | while read fn; do
$extra2/bin/cat $fn | $extra4/bin/sed "s|/nix/store/[a-z0-9]*-|/nix/store/ffffffffffffffffffffffffffffffff-|g" > $fn.tmp
if test -x $fn; then chmod +x $fn.tmp; fi
mv $fn.tmp $fn
done