~peter-pearse/ubuntu/natty/dbus-glib/prop001

« back to all changes in this revision

Viewing changes to tools/run-with-tmp-session-bus.sh

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2008-06-06 00:05:01 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080606000501-948ly35rsovjfcg1
Tags: 0.76-1
* New upstream release.
* debian/patches/01-476080-freeze-error-abi.patch
  - Removed, merged upstream.
* debian/patches/02-ignore-namespaced-nodes-and-attributes.patch
  - Removed, merged upstream.
* Add symbols file for libdbus-glib-1-2. 
* debian/rules
  - Bump shlibs to >= 0.76 due to API additions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/bash
 
1
#! /bin/sh
2
2
 
3
3
SCRIPTNAME=$0
4
4
WRAPPED_SCRIPT=$1
5
5
shift
6
6
 
7
 
function die() 
 
7
die() 
8
8
{
9
9
    if ! test -z "$DBUS_SESSION_BUS_PID" ; then
10
10
        echo "killing message bus "$DBUS_SESSION_BUS_PID >&2
37
37
 
38
38
echo "Created configuration file $CONFIG_FILE" >&2
39
39
 
40
 
export PATH=$DBUS_TOP_BUILDDIR/bus:$PATH
 
40
PATH=$DBUS_TOP_BUILDDIR/bus:$PATH
 
41
export PATH
41
42
## the libtool script found by the path search should already do this, but
42
 
export LD_LIBRARY_PATH=$DBUS_TOP_BUILDDIR/dbus/.libs:$LD_LIBRARY_PATH
43
 
 
 
43
LD_LIBRARY_PATH=$DBUS_TOP_BUILDDIR/dbus/.libs:$LD_LIBRARY_PATH
 
44
export PATH
44
45
unset DBUS_SESSION_BUS_ADDRESS
45
46
unset DBUS_SESSION_BUS_PID
46
47