summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorobache <obache>2013-02-24 01:27:16 +0000
committerobache <obache>2013-02-24 01:27:16 +0000
commit94a111bf0d1211f157ad6e8b30c7dad0b06a935e (patch)
tree6f94ee6626e82281bd1589b12cf634e274501ac7 /pkgtools
parentca851672921f39dc7cdb0ee2aec5a04bc13f7fb2 (diff)
downloadpkgsrc-94a111bf0d1211f157ad6e8b30c7dad0b06a935e.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 \