mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
21 lines
625 B
Bash
Executable File
21 lines
625 B
Bash
Executable File
#!/bin/sh
|
|
# Look for and run autosetup...
|
|
dir0="`dirname "$0"`"
|
|
dirA="$dir0"
|
|
if [ -d $dirA/autosetup ]; then
|
|
# A local copy of autosetup
|
|
dirA=$dirA/autosetup
|
|
elif [ -d $dirA/../autosetup ]; then
|
|
# SQLite "autoconf" bundle
|
|
dirA=$dirA/../autosetup
|
|
elif [ -d $dirA/../../autosetup ]; then
|
|
# SQLite canonical source tree
|
|
dirA=$dirA/../../autosetup
|
|
else
|
|
echo "$0: Cannot find autosetup" 1>&2
|
|
exit 1
|
|
fi
|
|
WRAPPER="$0"; export WRAPPER; exec "`"$dirA/autosetup-find-tclsh"`" \
|
|
"$dirA/autosetup" --teaish-extension-dir="$dir0" \
|
|
"$@"
|