summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2013-02-24 01:27:16 +0000
committerobache <obache@pkgsrc.org>2013-02-24 01:27:16 +0000
commit9c4f876e9cc4d91c0baac59dc2a2c5e96c25f36e (patch)
tree6f94ee6626e82281bd1589b12cf634e274501ac7 /pkgtools
parent609f0c52852581ec5e16f116c16af63b8ee328b6 (diff)
downloadpkgsrc-9c4f876e9cc4d91c0baac59dc2a2c5e96c25f36e.tar.gz
Fix missing '$' in regex in sh in bmake.
noticed by gson@.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/x11-links/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/x11-links/Makefile b/pkgtools/x11-links/Makefile
index cdec7fc236d..113c274f3e7 100644
--- a/pkgtools/x11-links/Makefile
+++ b/pkgtools/x11-links/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.139 2013/02/23 13:30:18 obache Exp $
+# $NetBSD: Makefile,v 1.140 2013/02/24 01:27:16 obache Exp $
#
# NOTE: If you update this package, then you'll likely need to also update
# the x11-links dependency in buildlink3.mk to the correct version,
@@ -101,7 +101,7 @@ do-build:
${CREATE_X11LINK}; \
${ECHO} "${X11_LINKS_SUBDIR}/$$file" \
>> ${PLIST_SRC.files}; \
- if (${ECHO} $$file | ${GREP} -q '\.la$'); then \
+ if (${ECHO} $$file | ${GREP} -q '\.la$$'); then \
cd $${srcdir} && \
${_LIBTOOL_EXPAND} $${file} | \
while read lib; do \