No longer re-create the targets when installing
This commit is contained in:
parent
6f5f1054ae
commit
7b972c0743
|
@ -112,6 +112,13 @@ while [ $# -gt 0 ]; do
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#install
|
||||||
|
if [ "$install" -eq 1 ]; then
|
||||||
|
$DEBUG $MKDIR -- "$instdir" || exit 2
|
||||||
|
$DEBUG $INSTALL -- "$target" "$instdir/$target" || exit 2
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
#create
|
#create
|
||||||
$DEBUG $XSLTPROC -o "$target" "$XSL" "$source"
|
$DEBUG $XSLTPROC -o "$target" "$XSL" "$source"
|
||||||
#XXX ignore errors
|
#XXX ignore errors
|
||||||
|
@ -120,10 +127,4 @@ while [ $# -gt 0 ]; do
|
||||||
$RM -- "$target"
|
$RM -- "$target"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#install
|
|
||||||
if [ "$install" -eq 1 ]; then
|
|
||||||
$DEBUG $MKDIR -- "$instdir" || exit 2
|
|
||||||
$DEBUG $INSTALL -- "$target" "$instdir/$target" || exit 2
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user