[gnome-themes-standard] Sort file names before appending to Makefile-icons.am



commit 8004e3f7bcf6bf18904ac46e42c2d024a276ec8f
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Mon Jul 16 12:20:53 2012 -0400

    Sort file names before appending to Makefile-icons.am
    
    So to reduce the noise whenever we update the icons from g-i-t-s.

 themes/HighContrast/create-makefiles.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/themes/HighContrast/create-makefiles.sh b/themes/HighContrast/create-makefiles.sh
index 6b08e42..317194e 100755
--- a/themes/HighContrast/create-makefiles.sh
+++ b/themes/HighContrast/create-makefiles.sh
@@ -4,5 +4,5 @@ FILE=Makefile-icons.am
 
 echo "NULL=" > $FILE
 echo "EXTRA_DIST = \\" >> $FILE
-find . \( -name "*.png" -or -name "*.svg" \) -print | awk '{ print $$0, " \\" }' >> $FILE
+find . \( -name "*.png" -or -name "*.svg" \) -print | awk '{ print $$0, " \\" }' | sort >> $FILE
 echo "\$(NULL)" >> $FILE



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]