From owner-svn-ports-head@freebsd.org Tue Nov 21 10:01:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BB03DE9937; Tue, 21 Nov 2017 10:01:10 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 081B967799; Tue, 21 Nov 2017 10:01:09 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vALA1894090753; Tue, 21 Nov 2017 10:01:08 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vALA18hs090752; Tue, 21 Nov 2017 10:01:08 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201711211001.vALA18hs090752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Tue, 21 Nov 2017 10:01:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454593 - head/devel/mk-configure X-SVN-Group: ports-head X-SVN-Commit-Author: trociny X-SVN-Commit-Paths: head/devel/mk-configure X-SVN-Commit-Revision: 454593 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Nov 2017 10:01:10 -0000 Author: trociny Date: Tue Nov 21 10:01:08 2017 New Revision: 454593 URL: https://svnweb.freebsd.org/changeset/ports/454593 Log: temporary workaround to fix "chicken egg" problem: To make mkc_check_prog we need mkc_check_prog, which is used here to test for awk, nm and makedepend if they are not explicitly specified. Hope to be fixed in the next mk-configure version. Modified: head/devel/mk-configure/Makefile Modified: head/devel/mk-configure/Makefile ============================================================================== --- head/devel/mk-configure/Makefile Tue Nov 21 09:00:16 2017 (r454592) +++ head/devel/mk-configure/Makefile Tue Nov 21 10:01:08 2017 (r454593) @@ -22,6 +22,9 @@ PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES +MAKE_ENV+= PROG.awk=/usr/bin/awk PROG.nm=/usr/bin/nm \ + PROG.makedepend=/usr/bin/mkdep + post-patch: @${ECHO_CMD} "MKDEP ?= bmkdep" >> ${WRKSRC}/mk/sys.mk