diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-06-12 15:34:38 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-06-12 15:34:38 +0000 |
commit | 61c1a50ff111a8b6712d84f7e0c7fa76d81aaca1 (patch) | |
tree | 8dfea8ed289114b46c997624a7b84c459667ce18 /pkgtools/xpkgwedge | |
parent | d9b7f763cf82c2668e44e382c57f0bf0cb568fe2 (diff) | |
download | pkgsrc-61c1a50ff111a8b6712d84f7e0c7fa76d81aaca1.tar.gz |
Use ${MAKE}, too.
Diffstat (limited to 'pkgtools/xpkgwedge')
-rw-r--r-- | pkgtools/xpkgwedge/Makefile | 3 | ||||
-rw-r--r-- | pkgtools/xpkgwedge/files/pkgxmkmf.in | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgtools/xpkgwedge/Makefile b/pkgtools/xpkgwedge/Makefile index 54306a79fd5..68b0b2cba26 100644 --- a/pkgtools/xpkgwedge/Makefile +++ b/pkgtools/xpkgwedge/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2003/03/29 12:42:13 jmmv Exp $ +# $NetBSD: Makefile,v 1.36 2003/06/12 15:34:38 jschauma Exp $ DISTNAME= xpkgwedge-1.7 WRKSRC= ${WRKDIR} @@ -34,6 +34,7 @@ FILES_SUBST+= CP=${CP:Q} FILES_SUBST+= ECHO=${ECHO:Q} FILES_SUBST+= GREP=${GREP:Q} FILES_SUBST+= LN=${LN:Q} +FILES_SUBST+= MAKE=${MAKE:Q} FILES_SUBST+= RM=${RM:Q} FILES_SUBST+= RMDIR=${RMDIR:Q} FILES_SUBST+= TRUE=${TRUE:Q} diff --git a/pkgtools/xpkgwedge/files/pkgxmkmf.in b/pkgtools/xpkgwedge/files/pkgxmkmf.in index 02e603ee785..b9202355f9a 100644 --- a/pkgtools/xpkgwedge/files/pkgxmkmf.in +++ b/pkgtools/xpkgwedge/files/pkgxmkmf.in @@ -3,7 +3,7 @@ # XFree86 Id: xc/config/util/xmkmf.cpp,v 1.3 2000/11/16 21:57:10 dawes Exp # XConsortium Id: xmkmf.cpp /main/22 1996/09/28 16:17:05 rws # -# $NetBSD: pkgxmkmf.in,v 1.2 2001/01/18 17:05:50 jlam Exp $ +# $NetBSD: pkgxmkmf.in,v 1.3 2003/06/12 15:34:39 jschauma Exp $ # # make a Makefile from an Imakefile from inside or outside the sources # with support for config files in ${PREFIX}/lib/X11/config @@ -67,11 +67,11 @@ case "$do_all" in yes) imake $imake_defines $args && echo "make Makefiles" && - make Makefiles && + @MAKE@ Makefiles && echo "make includes" && - make includes && + @MAKE@ includes && echo "make depend" && - make depend + @MAKE@ depend ;; *) imake $imake_defines $args |