]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Sort files to avoid unnecessary diffs
authorAndreas Öman <andreas@lonelycoder.com>
Mon, 16 Jun 2008 20:56:48 +0000 (20:56 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Mon, 16 Jun 2008 20:56:48 +0000 (20:56 +0000)
muxbuilder/build.sh

index 108aff0af6ac6a764370aead9d4b6836300502cb..d591ddc2879053b3c5b3ff8616477ca2d56653c8 100755 (executable)
@@ -16,9 +16,9 @@ echo  char hierarchy\;
 echo  char polarisation\;
 echo }\;
 
-find $1/dvb-s -type f | xargs ./muxbuilder 1 FE_QPSK
-find $1/dvb-t -type f | xargs ./muxbuilder 1 FE_OFDM
-find $1/dvb-c -type f | xargs ./muxbuilder 1 FE_QAM
+find $1/dvb-s -type f | sort | xargs ./muxbuilder 1 FE_QPSK
+find $1/dvb-t -type f | sort | xargs ./muxbuilder 1 FE_OFDM
+find $1/dvb-c -type f | sort | xargs ./muxbuilder 1 FE_QAM
 
 
 echo struct {
@@ -28,7 +28,7 @@ echo struct mux *muxes\;
 echo int nmuxes\;
 echo const char *comment\;
 echo } networks[] = {
-find $1/dvb-s -type f | xargs ./muxbuilder 2 FE_QPSK
-find $1/dvb-t -type f | xargs ./muxbuilder 2 FE_OFDM
-find $1/dvb-c -type f | xargs ./muxbuilder 2 FE_QAM
+find $1/dvb-s -type f | sort | xargs ./muxbuilder 2 FE_QPSK
+find $1/dvb-t -type f | sort | xargs ./muxbuilder 2 FE_OFDM
+find $1/dvb-c -type f | sort | xargs ./muxbuilder 2 FE_QAM
 echo }\;
\ No newline at end of file