core: fix alphabetical order of package configuration loading

It was reversed in commit e9fb5285f4
This commit is contained in:
syl20bnr 2018-01-11 10:43:44 -05:00
parent 34a0eb2463
commit 80a10f79db
1 changed files with 1 additions and 1 deletions

View File

@ -1873,7 +1873,7 @@ RNAME is the name symbol of another existing layer."
(push pkg packages-to-configure)
(configuration-layer//pre-configure-package pkg)))))))
;; actually configure packages in alphabetical order
(mapc 'configuration-layer//configure-package packages-to-configure)))
(mapc 'configuration-layer//configure-package (reverse packages-to-configure))))
(defun configuration-layer/get-location-directory (pkg-name location owner)
"Return the location on disk for PKG."