0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

* Break the cyclic dependency between the system derivation and

Grub's menu.lst.

svn path=/nixos/branches/modular-nixos/; revision=15931
This commit is contained in:
Eelco Dolstra 2009-06-10 21:46:42 +00:00
parent 1cea6b09ef
commit cd1e4aefc1
2 changed files with 10 additions and 2 deletions

View file

@ -41,7 +41,7 @@ touch pathlist
# Add the individual files.
for ((i = 0; i < ${#targets_[@]}; i++)); do
stripSlash "${targets_[$i]}"
echo "$res=$(readlink -f ${sources_[$i]})" >> pathlist
echo "$res=${sources_[$i]}" >> pathlist
done