From: nsz Date: Sat, 18 Jun 2011 21:07:17 +0000 (+0200) Subject: link to tip instead of relevant commit X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f40c8cc96510738d4b5190bb330787fbb64b73be;p=musl-tables link to tip instead of relevant commit --- diff --git a/makesyms.sh b/makesyms.sh index f851f65..993edd5 100755 --- a/makesyms.sh +++ b/makesyms.sh @@ -1,7 +1,7 @@ #!/bin/sh export LC_ALL=C -MUSL=../musl +MUSL=${MUSL:-../musl} nm -p -P $MUSL/lib/libc.a |awk '$2~/[A-Zvw]/{print $1,$2}' |sort |uniq |awk ' NR==1 { diff --git a/maketags.sh b/maketags.sh index c64907a..c0fd6e7 100755 --- a/maketags.sh +++ b/maketags.sh @@ -1,7 +1,7 @@ #!/bin/sh export LC_ALL=C -MUSL=../musl +MUSL=${MUSL:-../musl} ( cd $MUSL/include diff --git a/tab_c99.sh b/tab_c99.sh index f9cfad2..32ba6b6 100755 --- a/tab_c99.sh +++ b/tab_c99.sh @@ -1,7 +1,7 @@ #!/bin/sh export LC_ALL=C -MUSL=../musl +MUSL=${MUSL:-../musl} ( cd $MUSL; git log -n1 ) | awk ' BEGIN { @@ -25,7 +25,7 @@ BEGIN { if ($2 ~ /bits\//) s = $3 " " else - s = "" $3 " " + s = "" $3 " " kind[$1] = kind[$1] $3 kindstr[$1] = kindstr[$1] s } diff --git a/tab_posix.sh b/tab_posix.sh index d870424..9460da9 100755 --- a/tab_posix.sh +++ b/tab_posix.sh @@ -1,6 +1,7 @@ #!/bin/sh export LC_ALL=C +MUSL=${MUSL:-../musl} ( cd $MUSL; git log -n1 ) | awk ' BEGIN { @@ -24,7 +25,7 @@ BEGIN { if ($2 ~ /bits\//) s = $3 " " else - s = "" $3 " " + s = "" $3 " " kind[$1] = kind[$1] $3 kindstr[$1] = kindstr[$1] s }