~ubuntu-branches/ubuntu/jaunty/d-shlibs/jaunty

« back to all changes in this revision

Viewing changes to debian/pbuilder-test/02_uppercase

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-07-24 14:21:35 UTC
  • mfrom: (3.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080724142135-emxb378ja679shbo
Tags: 0.39
Bug fix: "d-shlibs: Does not recognize libpthread-stubs0-dev", thanks
to Michael Banck (Closes: #488791).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set +e 
 
4
 
 
5
cd debian/pbuilder-test/02_uppercase.d/
 
6
gcc -shared -Wl,--soname="libUppercase.so.1" -o /tmp/libUppercase.so.1.0.0
 
7
ln -s libUppercase.so.1.0.0 /tmp/libUppercase.so
 
8
d-shlibmove /tmp/libUppercase.so
 
9
case $? in
 
10
    2)
 
11
        exit 0;;
 
12
    *)
 
13
        exit 1;;
 
14
esac