fetch_funcs: print a message if using $nofetch.
This commit is contained in:
parent
91959db77e
commit
561783f002
1 changed files with 6 additions and 8 deletions
|
@ -62,20 +62,18 @@ fetch_distfiles()
|
||||||
# If nofetch is set in a build template, skip this phase
|
# If nofetch is set in a build template, skip this phase
|
||||||
# entirely and run the do_fetch() function.
|
# entirely and run the do_fetch() function.
|
||||||
#
|
#
|
||||||
if [ -n "$nofetch" ]; then
|
|
||||||
cd ${XBPS_BUILDDIR} && run_func do_fetch 2>/dev/null
|
|
||||||
if [ $? -ne 0 && $? -ne 255 ]; then
|
|
||||||
return $?
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $XBPS_SRCDISTDIR || return 1
|
|
||||||
if [ -n "$revision" ]; then
|
if [ -n "$revision" ]; then
|
||||||
lver="${version}_${revision}"
|
lver="${version}_${revision}"
|
||||||
else
|
else
|
||||||
lver="${version}"
|
lver="${version}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$nofetch" ]; then
|
||||||
|
msg_normal "Package '$pkgname ($lver)': running do_fetch phase."
|
||||||
|
cd ${XBPS_BUILDDIR} && run_func do_fetch 2>/dev/null && return $?
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $XBPS_SRCDISTDIR || return 1
|
||||||
for f in ${distfiles}; do
|
for f in ${distfiles}; do
|
||||||
curfile=$(basename $f)
|
curfile=$(basename $f)
|
||||||
if [ -f "$XBPS_SRCDISTDIR/$curfile" ]; then
|
if [ -f "$XBPS_SRCDISTDIR/$curfile" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue