svn commit: r319667 - head/tools/build/options

Baptiste Daroussin bapt at FreeBSD.org
Wed Jun 7 23:42:38 UTC 2017


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


More information about the svn-src-all mailing list