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
This commit is contained in:
teastep 2006-08-19 16:54:24 +00:00
parent 27dc9d3162
commit e3f1e0a6d7

View File

@ -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