diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2002-12-05 11:59:45 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2002-12-05 11:59:45 +0000 |
commit | 6f5e635944f96630d8aa31bfedb3dc16482a7040 (patch) | |
tree | 5dae389ecb2990fd4f783767e006212aff00fee0 /net | |
parent | 80c534d600301988d34fd26f66142bc576364ac3 (diff) | |
download | pkgsrc-6f5e635944f96630d8aa31bfedb3dc16482a7040.tar.gz |
install simph323 via make install in it's build directory, rather than
hardcoding the path to built binary in pkg Makefile; this is more libtool
friendly
Pointed out by Daniel Carosone in private e-mail.
Diffstat (limited to 'net')
-rw-r--r-- | net/openh323/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/openh323/Makefile b/net/openh323/Makefile index 6e220a29444..6e523f793a1 100644 --- a/net/openh323/Makefile +++ b/net/openh323/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2002/12/03 21:48:17 jdolecek Exp $ +# $NetBSD: Makefile,v 1.11 2002/12/05 11:59:45 jdolecek Exp $ # DISTNAME= openh323_1.10.4 @@ -41,8 +41,7 @@ do-install: cd ${WRKSRC}/include; \ for f in \*.h ; \ do ${INSTALL_DATA} $$f ${PREFIX}/include/openh323; done - ${INSTALL_PROGRAM} ${WRKDIR}/openh323/samples/simple/obj_*/simph323 \ - ${PREFIX}/bin/simph323 + cd ${WRKSRC}/samples/simple; ${MAKE_ENV} ${GMAKE} install -${INSTALL_DATA_DIR} ${PREFIX}/share/openh323 cd ${WRKSRC}; ${INSTALL_DATA} openh323u.mak ${PREFIX}/share/openh323 |