summaryrefslogtreecommitdiff
path: root/lang/lua4
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2003-07-24 21:44:37 +0000
committerjtb <jtb@pkgsrc.org>2003-07-24 21:44:37 +0000
commitd6f95d62de83af7ed5148c296b9b1d0dd0a19173 (patch)
tree2b7a21ad22f7389e10f0008e6d1e0c5fc659da2e /lang/lua4
parentd96f7482bc73af0b9c1b1aaa39eb3597d5d71ce1 (diff)
downloadpkgsrc-d6f95d62de83af7ed5148c296b9b1d0dd0a19173.tar.gz
Escape the . in the sed substitution.
Diffstat (limited to 'lang/lua4')
-rw-r--r--lang/lua4/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/lua4/Makefile b/lang/lua4/Makefile
index 90019f2fd58..1e933a57af4 100644
--- a/lang/lua4/Makefile
+++ b/lang/lua4/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2003/07/17 21:44:50 grant Exp $
+# $NetBSD: Makefile,v 1.4 2003/07/24 21:44:37 jtb Exp $
DISTNAME= lua-4.0.1
PKGNAME= lua4-4.01
@@ -33,7 +33,7 @@ post-patch:
pre-install:
for f in ${WRKSRC}/include/*.h; do \
- ${SED} -e 's:lua.h:lua4.h:g' $$f > $$f.tmp \
+ ${SED} -e 's:lua\.h:lua4\.h:g' $$f > $$f.tmp \
&& ${MV} $$f.tmp $$f; \
done