diff options
author | will <will@FreeBSD.org> | 2001-01-08 01:49:52 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-01-08 01:49:52 +0800 |
commit | 17fc78c61a40e51c25675da0e3d99e222c1abdd3 (patch) | |
tree | a8b19a050dd6847de35f8b185751c1b52138d171 /converters/kdesupport2 | |
parent | 98a4931c0a8138d6f6fb6de52d4fd949a15ae520 (diff) | |
download | freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.gz freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.zst freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.zip |
Clean up inefficient perl invocations; use multiple REs in the same call.
Diffstat (limited to 'converters/kdesupport2')
-rw-r--r-- | converters/kdesupport2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converters/kdesupport2/Makefile b/converters/kdesupport2/Makefile index e542bf5d22cf..2b1a6fbf8ccc 100644 --- a/converters/kdesupport2/Makefile +++ b/converters/kdesupport2/Makefile @@ -32,8 +32,8 @@ CONFIGURE_ENV+= LIBQT="-lqt2" MOC="${MOC}" LIBQTFILE="libqt2" \ USE_GMAKE= yes pre-configure: - ${PERL} -pi -e "s@TOPSUBDIRS libaps@TOPSUBDIRS@g" ${WRKSRC}/configure - ${PERL} -pi -e "s@odbc libaps@odbc@g" ${WRKSRC}/configure + ${PERL} -pi -e "s@TOPSUBDIRS libaps@TOPSUBDIRS@g ; \ + s@odbc libaps@odbc@g" ${WRKSRC}/configure ${PERL} -pi -e "s@-version-info 1:1@-version-info 3:0@g" ${WRKSRC}/mimelib/Makefile.in .include <bsd.port.mk> |