From: Jeff Trawick Date: Sat, 30 Dec 2000 14:39:15 +0000 (+0000) Subject: Get rid of the "-g" on sort. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~301 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ebfd56d0d517edae2d510ece8dde1c46aa43f40;p=apache Get rid of the "-g" on sort. With GNU sort 2.0 (which ships with Mandrake 7.2), the -g makes a difference in the sinclude order (which I assume is an intended difference which I have just broken). With GNU sort 1.2 (which ships with RedHat 6.0), the -g is accepted but is not documented and makes no difference in the result. Thus systems with GNU sort 1.2 were broken before and are still broken with respect to the order of the sinclude statements. With OS/390, Tru64, Solaris, and now I think AIX, -g was not accepted at all by sort so the output of this was broken and Apache would not build. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87554 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/config-stubs b/build/config-stubs index 6c83b5119c..533b5a072b 100755 --- a/build/config-stubs +++ b/build/config-stubs @@ -2,7 +2,7 @@ for configfiles in `find . -name "config*.m4" | \ sed 's#\(.*\)\/config\(.*\)\.m4#\2config.m4\1#' | \ - sort -g | \ + sort | \ sed 's#\(.*\)config.m4\(.*\)#\2/config\1.m4#g'`; do if [ -r $configfiles ]; then echo "sinclude($configfiles)"