Date: Wed, 7 Jun 2017 23:42:37 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r319667 - head/tools/build/options Message-ID: <201706072342.v57NgbA5060532@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Wed Jun 7 23:42:37 2017 New Revision: 319667 URL: https://svnweb.freebsd.org/changeset/base/319667 Log: Remove some workaround for an option that does not exists anymore. Modified: head/tools/build/options/makeman Modified: head/tools/build/options/makeman ============================================================================== --- head/tools/build/options/makeman Wed Jun 7 23:41:33 2017 (r319666) +++ head/tools/build/options/makeman Wed Jun 7 23:42:37 2017 (r319667) @@ -279,14 +279,6 @@ EOF comm -13 $t/config_default $t/config_${opt} | sed -n "/^${opt}$/!p" | comm -13 $t/deps - > $t/deps2 - # Work around BIND_UTILS=no being the default when every WITH_ - # option is enabled. - if [ "$(cat $t/deps2)" = WITHOUT_BIND_UTILS ]; then - sort $t/deps $t/deps2 > $t/_deps - mv $t/_deps $t/deps - :> $t/deps2 - fi - havedeps=0 if [ -s $t/deps ] ; then havedeps=1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706072342.v57NgbA5060532>