Files
nixpkgs/pkgs/stdenv
Thomas Tuegel e15fc83fc9 Don't split paths with spaces
setup.sh uses the anti-pattern `for f in $(find ...); do` in several
places. `find` returns one path per line, but `for` splits its arguments
by words, so paths which contain spaces are incorrectly split! The
correct way is `find ... | while read f; do`
2014-01-11 07:54:35 -06:00
..
2014-01-11 07:54:35 -06:00
2013-02-28 20:04:04 +01:00
2012-12-28 19:42:10 +01:00