summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-01-07 07:10:05 +0000
committerjlam <jlam@pkgsrc.org>2004-01-07 07:10:05 +0000
commitdfa2eafdc629598bc51b5c20f681a12a2cd5e3e0 (patch)
treead6e5c535e038a15fd733921b7533a29479539a3
parent88902e37a3beb167307a48cf0f6d1b5338f33e57 (diff)
downloadpkgsrc-dfa2eafdc629598bc51b5c20f681a12a2cd5e3e0.tar.gz
Remove "$" at the end of rules in the [IL] commands that mistakenly crept
in when creating this file based on the one in buildlink2. This should fix the problem noted on tech-pkg@: "Re: graphics/gdk-pixbuf can't find <gdk/gdk.h> build problem" where the CFLAGS for glib were being eaten by the unbuildlink step.
-rw-r--r--mk/buildlink3/gen-transform.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/buildlink3/gen-transform.sh b/mk/buildlink3/gen-transform.sh
index fb950323ea2..73b19c56b96 100644
--- a/mk/buildlink3/gen-transform.sh
+++ b/mk/buildlink3/gen-transform.sh
@@ -1,6 +1,6 @@
#!@BUILDLINK_SHELL@
#
-# $NetBSD: gen-transform.sh,v 1.8 2004/01/06 21:39:07 jlam Exp $
+# $NetBSD: gen-transform.sh,v 1.9 2004/01/07 07:10:05 jlam Exp $
transform="@_BLNK_TRANSFORM_SEDFILE@"
untransform="@_BLNK_UNTRANSFORM_SEDFILE@"
@@ -78,16 +78,16 @@ EOF
case "$action" in
transform)
@CAT@ >> $sedfile << EOF
-s|-$1$2\([ \`"':;]\)$|-$1$3\1|g
+s|-$1$2\([ \`"':;]\)|-$1$3\1|g
s|-$1$2$|-$1$3|g
s|-$1$2/|-$1$3/|g
EOF
;;
untransform)
@CAT@ >> $sedfile << EOF
-s|-$1$3\([ \`"':;]\)$|-$1$2\1|g
+s|-$1$3\([ \`"':;]\)|-$1$2\1|g
s|-$1$3$|-$1$2|g
-s|-$1$3/$|-$1$2/|g
+s|-$1$3/|-$1$2/|g
EOF
;;
esac