pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/buildlink3 Remove "$" at the end of rules in the [I...
details: https://anonhg.NetBSD.org/pkgsrc/rev/0521ded41fe9
branches: trunk
changeset: 465857:0521ded41fe9
user: jlam <jlam%pkgsrc.org@localhost>
date: Wed Jan 07 07:10:05 2004 +0000
description:
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.
diffstat:
mk/buildlink3/gen-transform.sh | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (31 lines):
diff -r b8e11b25a9f7 -r 0521ded41fe9 mk/buildlink3/gen-transform.sh
--- a/mk/buildlink3/gen-transform.sh Wed Jan 07 06:47:29 2004 +0000
+++ b/mk/buildlink3/gen-transform.sh Wed Jan 07 07:10:05 2004 +0000
@@ -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 @@
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
Home |
Main Index |
Thread Index |
Old Index