11 lines
191 B
Bash
11 lines
191 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
echo "Generating build information using autoreconf"
|
||
|
|
||
|
# All is done by autoreconf
|
||
|
autoreconf -f -i
|
||
|
|
||
|
# Run configure for this platform
|
||
|
echo "Now you are ready to run ./configure"
|
||
|
|