Skip to content

Commit

Permalink
mkdatabase needs BMAKE=${MAKE:Q} set before calling otherwise it will
Browse files Browse the repository at this point in the history
default to using 'make' which will break systems (e.g. OS/X) that use
'bmake'.
Report from Mark E. Perkins on pkgsrc-users@
  • Loading branch information
adrianp committed Aug 5, 2007
1 parent b42a556 commit b3f4aa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/bsd.pkg.readme.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: bsd.pkg.readme.mk,v 1.8 2007/08/04 11:23:56 adrianp Exp $
# $NetBSD: bsd.pkg.readme.mk,v 1.9 2007/08/05 19:13:02 adrianp Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and encapsulates the
# code to produce README.html files in each package directory.
Expand Down Expand Up @@ -266,7 +266,7 @@ show-vulnerabilities-html:
# the target used to generate the README.html file.
.PHONY: README.html
README.html: .PRECIOUS
@${SH} ../../mk/scripts/mkdatabase -f $@.tmp1
@${SETENV} BMAKE=${MAKE:Q} ${SH} ../../mk/scripts/mkdatabase -f $@.tmp1
@if ${TEST} -d ${PACKAGES}; then \
cd ${PACKAGES}; \
case `${PWD_CMD}` in \
Expand Down

0 comments on commit b3f4aa7

Please sign in to comment.