File: autogen.sh

package info (click to toggle)
rust-jemalloc-sys 0.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,660 kB
  • sloc: ansic: 67,941; perl: 4,138; sh: 3,716; makefile: 1,037; python: 359; cpp: 216; awk: 74
file content (17 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (49)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

for i in autoconf; do
    echo "$i"
    $i
    if [ $? -ne 0 ]; then
	echo "Error $? in $i"
	exit 1
    fi
done

echo "./configure --enable-autogen $@"
./configure --enable-autogen $@
if [ $? -ne 0 ]; then
    echo "Error $? in ./configure"
    exit 1
fi