File: run-script

package info (click to toggle)
dpkg 1.17.25
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 41,812 kB
  • sloc: ansic: 30,368; perl: 19,081; sh: 14,623; cpp: 4,675; makefile: 1,188; lex: 227; sed: 16
file content (13 lines) | stat: -rwxr-xr-x 325 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

top_srcdir=`dirname $0`

# To avoid using «readlink -f» or «realpath» we just change into the
# desired directory and work from there.
cd "$top_srcdir"

# Set up the environment, to use local perl modules and data files.
export PERL5LIB=`pwd`/scripts:`pwd`/dselect/methods
export DPKG_DATADIR=`pwd`

exec "$@"