diff options
author | seb <seb> | 2005-08-31 09:40:15 +0000 |
---|---|---|
committer | seb <seb> | 2005-08-31 09:40:15 +0000 |
commit | a8eff92af3266c7e1b0cf6102b751ce8ea2f7d6b (patch) | |
tree | a9076c50df555e32dbbae300e67ae6399209745c /x11/tk83 | |
parent | 770912a8795a92520ee64564fa24daadff8f8dbe (diff) | |
download | pkgsrc-a8eff92af3266c7e1b0cf6102b751ce8ea2f7d6b.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 'x11/tk83')
-rw-r--r-- | x11/tk83/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11/tk83/Makefile b/x11/tk83/Makefile index 5ce3e178868..9e778b9b831 100644 --- a/x11/tk83/Makefile +++ b/x11/tk83/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2005/06/01 18:03:32 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2005/08/31 09:40:15 seb Exp $ DISTNAME= tk8.3.4 PKGNAME= tk-8.3.4 +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_3/ \ ftp://ftp.informatik.uni-hamburg.de/pub/soft/lang/tcl/tcl8_3/ @@ -53,7 +54,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/tk|" \ ${WRKSRC}/tkConfig.sh > ${WRKSRC}/tkConfig.sh.tmp && \ |