diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-04 23:29:13 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-04 23:29:13 +0000 |
commit | af17969f768ffc254105fc762057c6e051f3313b (patch) | |
tree | f13665f78931ba60bd6f5753927e57130fa14ff9 /x11 | |
parent | 0cef6c1b8787413e481c27e6e5eacc1b69ecc605 (diff) | |
download | pkgsrc-af17969f768ffc254105fc762057c6e051f3313b.tar.gz |
Fixed pkglint warning:
WARN: Makefile.common:48: "${SH} ./configure" is not a valid pathname.
Fixing this fixed the following error:
... ${CONFIGURE_ENV} /bin/ksh /bin/ksh ./configure ...
/bin/ksh: /bin/ksh: cannot execute
Diffstat (limited to 'x11')
-rw-r--r-- | x11/qt4-libs/Makefile.common | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/x11/qt4-libs/Makefile.common b/x11/qt4-libs/Makefile.common index 5df4e62740d..5a52c797617 100644 --- a/x11/qt4-libs/Makefile.common +++ b/x11/qt4-libs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2007/03/18 17:34:41 adam Exp $ +# $NetBSD: Makefile.common,v 1.6 2007/11/04 23:29:13 rillig Exp $ DISTNAME= qt-x11-opensource-src-${QTVERSION} CATEGORIES= x11 @@ -45,7 +45,6 @@ CONFIGURE_ARGS+= -no-g++-exceptions .endif .if ${OPSYS} == "SunOS" -CONFIGURE_SCRIPT= ${SH} ./configure . if !empty(CC_VERSION:Mgcc*) CONFIGURE_ARGS+= -platform solaris-g++ . else |