diff options
author | seb <seb@pkgsrc.org> | 2005-08-31 09:40:15 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2005-08-31 09:40:15 +0000 |
commit | 3d9bf3cc3a90142ad42eac434c98e6452f94d453 (patch) | |
tree | a9076c50df555e32dbbae300e67ae6399209745c /lang/tcl83/Makefile | |
parent | ae96ace9f16da3e99844a4ff2f998cc7363ee046 (diff) | |
download | pkgsrc-3d9bf3cc3a90142ad42eac434c98e6452f94d453.tar.gz |
Restore original quoting syntax of variables in t{k,cl}Config.sh in order
to follow the principle of least surprise between the packages and the
mainstream builds.
Approved by jwise@.
Bump PKGREVISION of lang/tcl, x11/tk, x11/tk83 to 1 and of lang/tcl83 to 2.
Diffstat (limited to 'lang/tcl83/Makefile')
-rw-r--r-- | lang/tcl83/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/tcl83/Makefile b/lang/tcl83/Makefile index 4a75e205d1e..7a1484f526d 100644 --- a/lang/tcl83/Makefile +++ b/lang/tcl83/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.9 2005/04/13 20:41:03 jschauma Exp $ +# $NetBSD: Makefile,v 1.10 2005/08/31 09:40:15 seb Exp $ # DISTNAME= tcl8.3.4 PKGNAME= tcl-8.3.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_3/ \ ftp://gd.tuwien.ac.at/languages/tcl/scriptics/tcl8_3/ \ @@ -70,7 +70,7 @@ post-build: do \ ${TOUCH} $${file}; \ done - ${SED} -e "s|^\(.*\)='\(.*\)'|\1=\"\2\"|" \ + ${SED} \ -e "s|${WRKSRC}|${PREFIX}/lib|" \ -e "s|${WRKDIR}/${DISTNAME:C/-src//}|${PREFIX}/include/tcl|" \ ${WRKSRC}/tclConfig.sh > ${WRKSRC}/tclConfig.sh.tmp && \ |