mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-14 03:34:31 +01:00
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:
parent
27dc9d3162
commit
e3f1e0a6d7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user