~ubuntu-branches/ubuntu/precise/ceph/precise

« back to all changes in this revision

Viewing changes to src/cclass.in

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum, Clint Byrum, Micah Gersten
  • Date: 2011-02-12 22:50:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110212225026-yyyw4tk0msgql3ul
Tags: 0.24.2-0ubuntu1
[ Clint Byrum <clint@ubuntu.com> ]
* New upstream release. (LP: #658670, LP: #684011)
* debian/patches/fix-mkcephfs.patch: dropped (applied upstream)
* Removed .la files from libceph1-dev, libcrush1-dev and 
  librados1-dev (per Debian policy v3.9.1 10.2).
* debian/control: adding pkg-config as a build dependency
* debian/control: depend on libcrypto++-dev instead of libssl-dev
* debian/watch: added watch file

[ Micah Gersten <micahg@ubuntu.com> ]
* debian/control: add Homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    libdir=$LIBDIR
13
13
else
14
14
    BINDIR=@bindir@
15
 
    LIBDIR=@libdir@
16
 
    # i hate autoconf:
17
 
    if [ "@sysconfdir@" = "/usr/etc" ]; then
18
 
        ETCDIR=/etc/ceph
19
 
    else
20
 
        ETCDIR=@sysconfdir@/ceph
21
 
    fi
22
 
    libdir="$LIBDIR/rados-classes"
 
15
    ETCDIR=@sysconfdir@/ceph
 
16
    libdir=@libdir@/rados-classes
23
17
fi
24
18
 
25
19
load_opt="changed"
85
79
}
86
80
 
87
81
load_all() {
88
 
        all=`find $libdir -name 'libcls_*.so'`;
 
82
        all=`find $libdir -name 'libcls_*.so*' -type f`;
89
83
        if [ -n "$all" ]; then
90
84
                for fn in $all; do
91
85
                        echo Loading class: $fn: `$BINDIR/cclsinfo $fn`