* Process packages in the specified order (i.e., don't sort).

svn path=/nixpkgs/trunk/; revision=8166
This commit is contained in:
Eelco Dolstra 2007-03-04 01:20:07 +00:00
parent 0fdace792d
commit 69b62bf2d6

View file

@ -140,7 +140,7 @@ sub addPkg {
# Symlink to the packages that have been installed explicitly by the user.
my @args = split ' ', $ENV{"paths"};
foreach my $pkgDir (sort @args) {
foreach my $pkgDir (@args) {
addPkg($pkgDir, $ENV{"ignoreCollisions"} eq "1");
}