From: mpatocka@sourceware.org <mpatocka@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW scripts/relpath.awk
Date: 21 May 2010 15:28:21 -0000 [thread overview]
Message-ID: <20100521152821.16681.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: mpatocka at sourceware.org 2010-05-21 15:28:16
Modified files:
. : WHATS_NEW
scripts : relpath.awk
Log message:
Fix scripts/relpath.awk to work with mawk
length(array) is specific to GNU awk and doesn't work in mawk.
Use a return value of "split" function to indicate array size, this is
supported in both gawk and mawk.
This patch fixes the following errors during "make install" when mawk is
installed as a default awk.
mawk: scripts/relpath.awk: line 25: illegal reference to array from
mawk: scripts/relpath.awk: line 25: illegal reference to array to
mawk: scripts/relpath.awk: line 27: illegal reference to array from
mawk: scripts/relpath.awk: line 32: illegal reference to array to
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1590&r2=1.1591
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/scripts/relpath.awk.diff?cvsroot=lvm2&r1=1.3&r2=1.4
--- LVM2/WHATS_NEW 2010/05/21 14:47:58 1.1590
+++ LVM2/WHATS_NEW 2010/05/21 15:28:16 1.1591
@@ -1,5 +1,6 @@
Version 2.02.67 -
===============================
+ Fixed scripts/relpath.awk to work in mawk
Add _add_partial_replicator_to_dtree().
Activation code read and releases also remote VGs (Replicator).
Check for missing VGs before taking lock_vol (Replicator).
--- LVM2/scripts/relpath.awk 2010/04/30 14:49:45 1.3
+++ LVM2/scripts/relpath.awk 2010/05/21 15:28:16 1.4
@@ -19,17 +19,17 @@
# -> ../../e/f/
{
- split($1, from, "/");
- split($2, to, "/") ;
+ length_from = split($1, from, "/");
+ length_to = split($2, to, "/") ;
l = 1;
- while (l <= length(from) && l <= length(to) && from[l] == to[l])
+ while (l <= length_from && l <= length_to && from[l] == to[l])
l++;
- for (i = l; i <= length(from) && length(from[i]); i++) {
+ for (i = l; i <= length_from && length(from[i]); i++) {
if (i > l)
p = sprintf("%s/", p);
p = sprintf("%s..", p);
}
- for (i = l; i <= length(to) && length(to[i]); i++) {
+ for (i = l; i <= length_to && length(to[i]); i++) {
if (length(p) > 0)
p = sprintf("%s/", p);
p = sprintf("%s%s", p, to[i]);
next reply other threads:[~2010-05-21 15:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-21 15:28 mpatocka [this message]
-- strict thread matches above, loose matches on Subject: below --
2010-04-15 15:06 LVM2 ./WHATS_NEW scripts/relpath.awk zkabelac
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100521152821.16681.qmail@sourceware.org \
--to=mpatocka@sourceware.org \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.