No longer create useless directories
This commit is contained in:
parent
66d61fa3c4
commit
32e1ce4281
@ -151,8 +151,10 @@ while [ $# -gt 0 ]; do
|
|||||||
;;
|
;;
|
||||||
gtkdoc/sgml.stamp)
|
gtkdoc/sgml.stamp)
|
||||||
output="xml"
|
output="xml"
|
||||||
[ -n "$OBJDIR" ] && output="${OBJDIR}gtkdoc/xml"
|
if [ -n "$OBJDIR" ]; then
|
||||||
|
output="${OBJDIR}gtkdoc/xml"
|
||||||
$DEBUG $MKDIR -- "$output" || exit 2
|
$DEBUG $MKDIR -- "$output" || exit 2
|
||||||
|
fi
|
||||||
(cd "${OBJDIR}gtkdoc" &&
|
(cd "${OBJDIR}gtkdoc" &&
|
||||||
$DEBUG $GTKDOC_MKDB \
|
$DEBUG $GTKDOC_MKDB \
|
||||||
--module="$MODULE" \
|
--module="$MODULE" \
|
||||||
@ -162,8 +164,10 @@ while [ $# -gt 0 ]; do
|
|||||||
;;
|
;;
|
||||||
gtkdoc/tmpl.stamp)
|
gtkdoc/tmpl.stamp)
|
||||||
output="tmpl"
|
output="tmpl"
|
||||||
[ -n "$OBJDIR" ] && output="${OBJDIR}gtkdoc/tmpl"
|
if [ -n "$OBJDIR" ]; then
|
||||||
|
output="${OBJDIR}gtkdoc/tmpl"
|
||||||
$DEBUG $MKDIR -- "$output" || exit 2
|
$DEBUG $MKDIR -- "$output" || exit 2
|
||||||
|
fi
|
||||||
(cd "${OBJDIR}gtkdoc" &&
|
(cd "${OBJDIR}gtkdoc" &&
|
||||||
$DEBUG $GTKDOC_MKTMPL \
|
$DEBUG $GTKDOC_MKTMPL \
|
||||||
--module="$MODULE" \
|
--module="$MODULE" \
|
||||||
|
Loading…
Reference in New Issue
Block a user