mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
tweak check-symbols to use .old/.new instead of .1/.2 which is confusing when reading .so names. :)
This commit is contained in:
commit
85ab708f3d
@ -30,7 +30,7 @@ do
|
|||||||
for lib in `dpkg -L $pack | grep -E "\.so$" | sort -u`;
|
for lib in `dpkg -L $pack | grep -E "\.so$" | sort -u`;
|
||||||
do
|
do
|
||||||
LIBNAME=$(basename $lib);
|
LIBNAME=$(basename $lib);
|
||||||
nm -D $lib | cut -d' ' -f3 | sort -u > /tmp/$LIBNAME.1;
|
nm -D $lib | cut -d' ' -f3 | sort -u > /tmp/$LIBNAME.old;
|
||||||
done;
|
done;
|
||||||
DEBLINE="$DEBLINE $DEBDIR/$pack*.deb ";
|
DEBLINE="$DEBLINE $DEBDIR/$pack*.deb ";
|
||||||
done
|
done
|
||||||
@ -58,9 +58,9 @@ do
|
|||||||
for lib in `dpkg -L $pack | grep -E "\.so$" | sort -u`;
|
for lib in `dpkg -L $pack | grep -E "\.so$" | sort -u`;
|
||||||
do
|
do
|
||||||
LIBNAME=$(basename $lib);
|
LIBNAME=$(basename $lib);
|
||||||
nm -D $lib | cut -d' ' -f3 | sort -u > /tmp/$LIBNAME.2;
|
nm -D $lib | cut -d' ' -f3 | sort -u > /tmp/$LIBNAME.new;
|
||||||
echo "Checking: $lib";
|
echo "Checking: $lib";
|
||||||
diff -u /tmp/$LIBNAME.{1,2};
|
diff -u /tmp/$LIBNAME.{old,new};
|
||||||
rm /tmp/$LIBNAME.{1,2};
|
rm /tmp/$LIBNAME.{old,new};
|
||||||
done;
|
done;
|
||||||
done
|
done
|
||||||
|
4
debian/copyright
vendored
4
debian/copyright
vendored
@ -20,14 +20,14 @@ Upstream Authors:
|
|||||||
|
|
||||||
Copyright:
|
Copyright:
|
||||||
|
|
||||||
Canonical Ltd. 2006-2007
|
Canonical Ltd. 2006-2008
|
||||||
Albert Damen <albrt@gmx.net> 2007
|
Albert Damen <albrt@gmx.net> 2007
|
||||||
Albin Tonnerre <lut1n.tne@gmail.com> 2006-2007
|
Albin Tonnerre <lut1n.tne@gmail.com> 2006-2007
|
||||||
Daniel Holbach <daniel.holbach@ubuntu.com> 2006-2007
|
Daniel Holbach <daniel.holbach@ubuntu.com> 2006-2007
|
||||||
Luke Yelavich <themuso@ubuntu.com> 2006-2007
|
Luke Yelavich <themuso@ubuntu.com> 2006-2007
|
||||||
Martin Pitt <martin.pitt@ubuntu.com> 2007
|
Martin Pitt <martin.pitt@ubuntu.com> 2007
|
||||||
Michael Bienia <geser@ubuntu.com> 2006-2007
|
Michael Bienia <geser@ubuntu.com> 2006-2007
|
||||||
Kees Cook <kees@ubuntu.com> 2006-2007
|
Kees Cook <kees@ubuntu.com> 2006-2008
|
||||||
Pete Savage <petesavage@ubuntu.com> 2006-2007
|
Pete Savage <petesavage@ubuntu.com> 2006-2007
|
||||||
Siegfried-A. Gevatter <rainct@ubuntu.com> 2007-2008
|
Siegfried-A. Gevatter <rainct@ubuntu.com> 2007-2008
|
||||||
Terence Simpson <stdin@stdin.me.uk> 2007
|
Terence Simpson <stdin@stdin.me.uk> 2007
|
||||||
|
Loading…
x
Reference in New Issue
Block a user