diff options
author | agc <agc> | 2000-07-14 16:04:19 +0000 |
---|---|---|
committer | agc <agc> | 2000-07-14 16:04:19 +0000 |
commit | 953b30dcb9f29ef6b2426d0faf6c90c45fb947c8 (patch) | |
tree | aa658f354e6a972c06b16f22e2cbf7898068e0c8 /sysutils/asapm | |
parent | ffad6cc430cf0a899a5bd3437cd085496d5fa99d (diff) | |
download | pkgsrc-953b30dcb9f29ef6b2426d0faf6c90c45fb947c8.tar.gz |
The previous method of using a make target for finding a prerequisite
package's prefix would not work as part of the environment specification
via MAKE_ENV (as it would not be executed in the correct directory).
Fix this by invoking pkg_info(1) directly, not via an intermediate make(1)
step - this is not as clean, but more effective (i.e. it works).
Diffstat (limited to 'sysutils/asapm')
-rw-r--r-- | sysutils/asapm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/asapm/Makefile b/sysutils/asapm/Makefile index 14fec8b451e..543846d97d2 100644 --- a/sysutils/asapm/Makefile +++ b/sysutils/asapm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2000/07/11 14:53:45 agc Exp $ +# $NetBSD: Makefile,v 1.12 2000/07/14 16:04:25 agc Exp $ # FreeBSD Id: Makefile,v 1.5 1998/11/29 12:43:12 asami Exp # @@ -21,7 +21,7 @@ GNU_CONFIGURE= yes USE_X11= yes CONFIGURE_ARGS+= --disable-jpeg # there actually is no JPEG support CONFIGURE_ARGS+= --with-xpm \ - --with-xpm-includes="`${MAKE} show-xpm-prefix`/include" \ - --with-xpm-library="`${MAKE} show-xpm-prefix`/lib" + --with-xpm-includes="`${SHOW_PREFIX1} xpm ${SHOW_PREFIX2}`/include" \ + --with-xpm-library="`${SHOW_PREFIX1} xpm ${SHOW_PREFIX2}`/lib" .include "../../mk/bsd.pkg.mk" |