Files
nixpkgs/pkgs/development/libraries/glibc/subst.sh
Armijn Hemel 81e13c1572 remove the dependency on /bin/pwd, use the pwd we have in $PATH instead
svn path=/nixpkgs/branches/nixos-pkgs/; revision=2052
2005-01-18 13:04:28 +00:00

6 lines
113 B
Bash

FILES="configure io/ftwtest-sh"
for i in $FILES ; do
sed -e "s^@PWD@^pwd^g" < $i > $i.new
mv $i.new $i
done