diff options
author | jlam <jlam@pkgsrc.org> | 2001-02-26 17:01:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-02-26 17:01:59 +0000 |
commit | e9dee5bd113bf0024e6d843d62060d88816b8e6c (patch) | |
tree | 8fdbb3c63e832e67baa59cc9e68d395640c19f7b /x11 | |
parent | 014b8a5dcedef93daf7b1ebbfb7cf7e7ee6001e6 (diff) | |
download | pkgsrc-e9dee5bd113bf0024e6d843d62060d88816b8e6c.tar.gz |
Mechanical changes to use the pkgsrc autoconf and automake by specifying
complete paths to these programs.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/lesstif/Makefile.common | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/x11/lesstif/Makefile.common b/x11/lesstif/Makefile.common index 2206bc6ae43..19482a2176c 100644 --- a/x11/lesstif/Makefile.common +++ b/x11/lesstif/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.4 2000/12/22 17:26:18 jlam Exp $ +# $NetBSD: Makefile.common,v 1.5 2001/02/26 17:02:00 jlam Exp $ DISTNAME= lesstif-${LESSTIF_VERSION} LESSTIF_VERSION= 0.92.6 @@ -13,8 +13,8 @@ MASTER_SITES= ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ \ MAINTAINER= jlam@netbsd.org HOMEPAGE= http://www.lesstif.org/ -BUILD_DEPENDS+= autoconf:../../devel/autoconf -BUILD_DEPENDS+= automake:../../devel/automake +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake USE_X11BASE= # defined USE_GMAKE= # defined @@ -43,8 +43,12 @@ pre-configure: ${TOUCH} ${WRKDIR}/nonexecutable ${CHMOD} a-x ${WRKDIR}/nonexecutable for dir in . lib/Xlt lib/Xbae test ; do \ - cd ${WRKSRC}/$$dir && libtoolize --force && aclocal \ - && autoheader && automake -a -i && autoconf; \ + cd ${WRKSRC}/$$dir \ + && ${LOCALBASE}/bin/libtoolize --force \ + && ${LOCALBASE}/bin/aclocal \ + && ${LOCALBASE}/bin/autoheader \ + && ${LOCALBASE}/bin/automake -a -i \ + && ${LOCALBASE}/bin/autoconf; \ done .include "../../mk/bsd.pkg.mk" |