link to tip instead of relevant commit
authornsz <nsz@port70.net>
Sat, 18 Jun 2011 21:07:17 +0000 (23:07 +0200)
committernsz <nsz@port70.net>
Sat, 18 Jun 2011 21:07:17 +0000 (23:07 +0200)
makesyms.sh
maketags.sh
tab_c99.sh
tab_posix.sh

index f851f65..993edd5 100755 (executable)
@@ -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 {
index c64907a..c0fd6e7 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 export LC_ALL=C
-MUSL=../musl
+MUSL=${MUSL:-../musl}
 
 (
        cd $MUSL/include
index f9cfad2..32ba6b6 100755 (executable)
@@ -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 = "<a href=\"http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/" $2 ";hb=" hash "#l" $4 "\">" $3 "</a> "
+                       s = "<a href=\"http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/" $2 "#l" $4 "\">" $3 "</a> "
                kind[$1] = kind[$1] $3
                kindstr[$1] = kindstr[$1] s
        }
index d870424..9460da9 100755 (executable)
@@ -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 = "<a href=\"http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/" $2 ";hb=" hash "#l" $4 "\">" $3 "</a> "
+                       s = "<a href=\"http://git.etalabs.net/cgi-bin/gitweb.cgi?p=musl;a=blob;f=include/" $2 "#l" $4 "\">" $3 "</a> "
                kind[$1] = kind[$1] $3
                kindstr[$1] = kindstr[$1] s
        }