From 19ef492220928c1325e6a3627529c2a16e8ee031 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Thu, 22 Dec 2016 10:55:31 -0200 Subject: Remove rescue from installation media --- build/scripts/install_freebsd.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build/scripts/install_freebsd.sh b/build/scripts/install_freebsd.sh index 5a03e42..286f893 100755 --- a/build/scripts/install_freebsd.sh +++ b/build/scripts/install_freebsd.sh @@ -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} -- cgit v1.1