diff options
author | riastradh <riastradh@pkgsrc.org> | 2013-05-09 23:37:25 +0000 |
---|---|---|
committer | riastradh <riastradh@pkgsrc.org> | 2013-05-09 23:37:25 +0000 |
commit | 4fc9f564bc1e55c92794e22b9db447cf95ad6873 (patch) | |
tree | eef7f13a77e111e43481a085f3d5cf0aabb03aa6 /mk/emulator | |
parent | b37693d50bffe0f7a872147d65f66229a1b8ff64 (diff) | |
download | pkgsrc-4fc9f564bc1e55c92794e22b9db447cf95ad6873.tar.gz |
Split BUILD_DEPENDS into TOOL_DEPENDS and BUILD_DEPENDS in mk/.
Build depends are target packages that are needed at build-time for,
e.g., static libraries to link against, header files to include, &c.
Tool depends are native packages that are needed at build-time for,
e.g., compilers/linkers/&c. to run.
ok agc
Diffstat (limited to 'mk/emulator')
-rw-r--r-- | mk/emulator/pkg-rpm.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/emulator/pkg-rpm.mk b/mk/emulator/pkg-rpm.mk index ae004620b9a..e3d0739ee5a 100644 --- a/mk/emulator/pkg-rpm.mk +++ b/mk/emulator/pkg-rpm.mk @@ -1,4 +1,4 @@ -# $NetBSD: pkg-rpm.mk,v 1.4 2010/09/07 17:33:40 tron Exp $ +# $NetBSD: pkg-rpm.mk,v 1.5 2013/05/09 23:37:26 riastradh Exp $ # # RPM package format # @@ -56,7 +56,7 @@ # files listed in RPMFILES. # -BUILD_DEPENDS+= rpm2pkg>=3.1.4:../../pkgtools/rpm2pkg +TOOL_DEPENDS+= rpm2pkg>=3.1.4:../../pkgtools/rpm2pkg EVAL_PREFIX+= _RPM2PKG_PREFIX=rpm2pkg RPM2PKG= ${_RPM2PKG_PREFIX}/sbin/rpm2pkg |