File: autogen.sh

package info (click to toggle)
x11vnc 0.9.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,508 kB
  • sloc: ansic: 94,841; tcl: 23,002; sh: 5,421; perl: 4,293; makefile: 203
file content (13 lines) | stat: -rwxr-xr-x 202 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

srcdir=$(dirname "$0")
test -z "$srcdir" && srcdir=.

ORIGDIR=$(pwd)
cd "$srcdir"

test -d m4 || mkdir m4
autoreconf -v --install || exit 1
cd "$ORIGDIR" || exit $?

"$srcdir"/configure "$@"