1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Make the build reproducible
Author: Chris Lamb <lamby@debian.org>
Last-Update: 2025-09-22
Forwarded: not-needed
--- a/scripts/build-udev-rules.sh
+++ b/scripts/build-udev-rules.sh
@@ -61,7 +61,7 @@
# Create a list of RGBController.cpp classes including path #
#-----------------------------------------------------------------------------#
echo -e "Creating file list to parse metadata"
-FILE_LIST=$(find ${CONTROLLER_PATH} -name "RGBController_*.cpp" | sort)
+FILE_LIST=$(find ${CONTROLLER_PATH} -name "RGBController_*.cpp" | LC_ALL=C sort)
#Check the output of the file_list
# echo -e "$FILE_LIST" >> "file_list.txt"
|