bash-completion: Replace 'ln -sf' commands with rm; $(LN_S).

This commit is contained in:
Richard W.M. Jones
2014-10-24 09:12:56 +01:00
parent 46f9dd5290
commit 68ac0afc8d

View File

@@ -41,28 +41,39 @@ EXTRA_DIST = \
# Some of the scripts are simply symbolic links.
virt-cat:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-df:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-edit:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-filesystems:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-format:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-inspector:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-log:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-ls:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-sysprep:
ln -sf virt-alignment-scan $@
rm -f $@
$(LN_S) virt-alignment-scan $@
virt-builder:
ln -sf virt-resize $@
rm -f $@
$(LN_S) virt-resize $@
virt-sparsify:
ln -sf virt-resize $@
rm -f $@
$(LN_S) virt-resize $@
if HAVE_BASH_COMPLETION