mirror of
https://github.com/samba-team/samba.git
synced 2025-01-05 09:18:06 +03:00
22e2340155
This to allow us to remove configure from CVS.
(This used to be commit 9e8e352e10
)
20 lines
336 B
Bash
Executable File
20 lines
336 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Run this script to build samba from CVS.
|
|
|
|
if which autoconf > /dev/null
|
|
then
|
|
:
|
|
else
|
|
echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "$0: running autoheader"
|
|
autoheader || exit 1
|
|
|
|
echo "$0: running autoconf"
|
|
autoconf || exit 1
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|