mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
* 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:
parent
30006470aa
commit
b578e0d353
|
@ -27,7 +27,7 @@ vmTools.buildRPM (
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for i in $out/rpms/*/*.rpm; do
|
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
|
echo "file rpm $i" >> $out/nix-support/hydra-build-products
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue