* Work around an apparent bug in the Nix expression lexer (it doesn't

accept $' in ''-strings).

svn path=/nixpkgs/trunk/; revision=17942
This commit is contained in:
Eelco Dolstra 2009-10-23 13:41:11 +00:00
parent 30006470aa
commit b578e0d353

View file

@ -27,7 +27,7 @@ vmTools.buildRPM (
postInstall = ''
for i in $out/rpms/*/*.rpm; do
if echo $i | grep -vq '\.src\.rpm$'; then
if echo $i | grep -vq "\.src\.rpm$"; then
echo "file rpm $i" >> $out/nix-support/hydra-build-products
fi
done