mirror of
https://github.com/vim/vim
synced 2025-03-16 14:57:52 +01:00
10 lines
318 B
Bash
Executable file
10 lines
318 B
Bash
Executable file
#! /bin/sh
|
|
# run the automatically generated configure script
|
|
CONFIG_STATUS=auto/config.status \
|
|
auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
|
|
result=$?
|
|
|
|
# Stupid autoconf 2.5x causes this file to be left behind.
|
|
if test -f configure.lineno; then rm -f configure.lineno; fi
|
|
|
|
exit $result
|