Skip to content

Commit

Permalink
Remove rescue from installation media
Browse files Browse the repository at this point in the history
  • Loading branch information
rbgarga committed Dec 22, 2016
1 parent 1c937bd commit 19ef492
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/scripts/install_freebsd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,11 @@ j="-j${njobs}"
[ -n "${objdir}" ] \
&& export MAKEOBJDIRPREFIX=${objdir}

[ -z "${installation_media}" ] \
&& export WITHOUT_BSDINSTALL=yes WITHOUT_RESCUE=yes
if [ -n "${installation_media}" ]; then
export WITHOUT_RESCUE=yes
else
export WITHOUT_BSDINSTALL=yes
fi

export DESTDIR=${destdir}

Expand Down

0 comments on commit 19ef492

Please sign in to comment.