insmod: Install for insmod.static too.

This commit is contained in:
Ville Skyttä 2012-01-14 11:43:15 +02:00
parent 068e422222
commit d02b4e15e3
3 changed files with 7 additions and 1 deletions

View File

@ -55,6 +55,7 @@ identify
ifdown
ifstatus
import
insmod.static
javac
javadoc
kplayer

View File

@ -407,6 +407,7 @@ CLEANFILES = \
ifdown \
ifstatus \
import \
insmod.static \
javac \
javadoc \
kplayer \
@ -639,6 +640,10 @@ symlinks:
rm -f $(targetdir)/$$file && \
$(LN_S) info $(targetdir)/$$file ; \
done
for file in insmod.static ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) insmod $(targetdir)/$$file ; \
done
for file in javac javadoc ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) java $(targetdir)/$$file ; \

View File

@ -13,6 +13,6 @@ _insmod()
2>/dev/null | cut -d: -f1 )" -- "$cur" ) )
fi
} &&
complete -F _insmod insmod
complete -F _insmod insmod insmod.static
# ex: ts=4 sw=4 et filetype=sh