From: Amos Jeffries Date: Sun, 27 Jun 2010 09:21:15 +0000 (+1200) Subject: Maintenance: Formater skip libltdl dirs X-Git-Tag: SQUID_3_1_5~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=076f6140736edd40f8648e066c21f31aa83115e0;p=thirdparty%2Fsquid.git Maintenance: Formater skip libltdl dirs --- diff --git a/scripts/source-maintenance.sh b/scripts/source-maintenance.sh index 4f595d6d39..ad743c7a06 100755 --- a/scripts/source-maintenance.sh +++ b/scripts/source-maintenance.sh @@ -76,7 +76,9 @@ for FILENAME in `ls -1`; do esac - if test -d $FILENAME ; then + if test "$FILENAME" = "libltdl" ; then + : + elif test -d $FILENAME ; then cd $FILENAME srcformat ${ROOT} || exit 1 cd ..