summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/conffile.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions/conffile.sh b/functions/conffile.sh
index 09be0bcc6..dbe912be9 100755
--- a/functions/conffile.sh
+++ b/functions/conffile.sh
@@ -21,9 +21,10 @@ Get_conffiles ()
then
FILES="${LB_CONFIG}"
else
+ # List standard files first, then possible user arch/dist overrides
+ FILES="${@}"
local FILE
for FILE in "${@}"; do
- FILES="${FILES} ${FILE}"
FILES="${FILES} ${LB_ARCHITECTURE:+$FILE.$LB_ARCHITECTURE}"
FILES="${FILES} ${LB_DISTRIBUTION:+$FILE.$LB_DISTRIBUTION}"
done