From e3f1e0a6d769561417928c1b1633195891924542 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 19 Aug 2006 16:54:24 +0000 Subject: [PATCH] Handle the case of no compiler libraries to install git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@4389 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/install.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Shorewall/install.sh b/Shorewall/install.sh index 22ba791e3..5974a2579 100755 --- a/Shorewall/install.sh +++ b/Shorewall/install.sh @@ -649,8 +649,14 @@ echo "Limit action extension script installed as ${PREFIX}/usr/share/shorewall/L # Install the Compiler Library files # for f in clib.* ; do - install_file $f ${PREFIX}/usr/share/shorewall/$f 0555 - echo "Compiler library ${f#*.} installed as ${PREFIX}/usr/share/shorewall/$f" + case $f in + *.\*) + ;; + *) + install_file $f ${PREFIX}/usr/share/shorewall/$f 0555 + echo "Compiler library ${f#*.} installed as ${PREFIX}/usr/share/shorewall/$f" + ;; + esac done # # Install the Common Library files