* Missing semicolons.

This commit is contained in:
Eelco Dolstra 2003-12-21 21:56:54 +00:00
parent 528f1d1867
commit 397c8ba898
2 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ foreach my $path (@paths) {
my $nixexpr =
"((import @datadir@/nix/corepkgs/nar/nar.nix) " .
# !!! $path should be represented as a closure
"{path = \"$path\"; system = \"@system@\"}) ";
"{path = \"$path\"; system = \"@system@\";}) ";
print NIX $nixexpr;
}