diff options
author | mm <mm@FreeBSD.org> | 2007-06-06 21:46:46 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2007-06-06 21:46:46 +0800 |
commit | cef2bc5c7baab9e49056a1a6c5cc6b7fff473b0f (patch) | |
tree | f9063f2f238e658ba83640f52cc64541ef79b4ca /lang/tcl86 | |
parent | a8dad8b77ee6d186a651e3729e3f460a6b0ad59c (diff) | |
download | freebsd-ports-gnome-cef2bc5c7baab9e49056a1a6c5cc6b7fff473b0f.tar.gz freebsd-ports-gnome-cef2bc5c7baab9e49056a1a6c5cc6b7fff473b0f.tar.zst freebsd-ports-gnome-cef2bc5c7baab9e49056a1a6c5cc6b7fff473b0f.zip |
- revert ${TR} back to tr, threaded build was broken
Approved by: garga (mentor)
Diffstat (limited to 'lang/tcl86')
-rw-r--r-- | lang/tcl86/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/tcl86/Makefile b/lang/tcl86/Makefile index eeda70aab5b8..81874c85ebb0 100644 --- a/lang/tcl86/Makefile +++ b/lang/tcl86/Makefile @@ -7,7 +7,7 @@ PORTNAME= tcl PORTVERSION= 8.5.a.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= tcl @@ -707,9 +707,9 @@ post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ -e 's|$${TCL_TRIM_DOTS}|$${TCL_TRIM_DOTS}${THREADS_SUFFIX}|g' \ -e 's|-ltcl$${TCL_VERSION}|-ltcl$${TCL_VERSION}${THREADS_SUFFIX}|g' \ - -e 's/-ltcl`echo $${TCL_VERSION} | ${TR} -d .`/-ltcl`echo $${TCL_VERSION} | ${TR} -d .`${THREADS_SUFFIX}/g' \ + -e 's/-ltcl`echo $${TCL_VERSION} | tr -d .`/-ltcl`echo $${TCL_VERSION} | tr -d .`${THREADS_SUFFIX}/g' \ -e 's|-ltclstub$${TCL_VERSION}|-ltclstub$${TCL_VERSION}${THREADS_SUFFIX}|g' \ - -e 's/-ltclstub`echo $${TCL_VERSION} | ${TR} -d .`/-ltclstub`echo $${TCL_VERSION} | ${TR} -d .`${THREADS_SUFFIX}/g' \ + -e 's/-ltclstub`echo $${TCL_VERSION} | tr -d .`/-ltclstub`echo $${TCL_VERSION} | tr -d .`${THREADS_SUFFIX}/g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|libtcl$${SHORT_TCL_VER}|libtcl$${SHORT_TCL_VER}${THREADS_SUFFIX}|g' \ -e 's|$$(BIN_INSTALL_DIR)/tclsh$$(VERSION)|$$(BIN_INSTALL_DIR)/tclsh$$(VERSION)${THREADS_SUFFIX}|g' \ |