~ubuntu-branches/ubuntu/trusty/vm/trusty

« back to all changes in this revision

Viewing changes to debian/common/get_shlib_ver

  • Committer: Bazaar Package Importer
  • Author(s): Manoj Srivastava
  • Date: 2009-10-20 09:59:26 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20091020095926-jb4p7kufpwnk66wr
Tags: 8.0.12-6
Take extra care to remove cruft during remove and/or purge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh 
 
2
#                               -*- Mode: Sh -*- 
 
3
# get_shlib_ver --- 
 
4
# Author           : Manoj Srivastava ( srivasta@golden-gryphon.com ) 
 
5
# Created On       : Tue Sep  1 15:27:07 2009
 
6
# Created On Node  : anzu.internal.golden-gryphon.com
 
7
# Last Modified By : Manoj Srivastava
 
8
# Status           : Unknown, Use with caution!
 
9
# HISTORY          : 
 
10
# Description      : 
 
11
# If there is a symbols file preent, get the most recent version a
 
12
# symbol was added in.
 
13
 
14
 
 
15
 
 
16
# This program is free software; you can redistribute it and/or modify
 
17
# it under the terms of the GNU General Public License as published by
 
18
# the Free Software Foundation; either version 2 of the License, or
 
19
# (at your option) any later version.
 
20
#
 
21
# This program is distributed in the hope that it will be useful,
 
22
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
23
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
24
# GNU General Public License for more details.
 
25
#
 
26
# You should have received a copy of the GNU General Public License
 
27
# along with this program; if not, write to the Free Software
 
28
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
29
 
30
 
 
31
# Make sure we abort on error
 
32
set -e
 
33
progname="$(basename \"$0\")"
 
34
 
 
35
test ! -d debian || \
 
36
  find debian -wholename 'debian/*\.symbols' | while read lib; do
 
37
    echo -n "Shlib info for" ${lib%%.symbols} ": ";
 
38
    sort -n -k 2,2b $lib  | grep '^ ' | tail -n 1 | awk '{print $2;}';
 
39
done
 
40