diff options
author | rillig <rillig> | 2007-11-04 23:29:13 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-11-04 23:29:13 +0000 |
commit | d13410deed8eea91c785522040a6596b36532969 (patch) | |
tree | f13665f78931ba60bd6f5753927e57130fa14ff9 /x11 | |
parent | d7f098f4434de350fb292657272efebc1408f13d (diff) | |
download | pkgsrc-d13410deed8eea91c785522040a6596b36532969.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 |