09c14ae7c8
It didn't work correctly when several arguments were passed to it. For example, when typing: ./configure --disable-shared --prefix=/usr the "--prefix=/usr" was incorrectly sent to the "make" program..
12 lines
184 B
Bash
12 lines
184 B
Bash
#!/bin/sh
|
|
#
|
|
# Call the 'configure' script located in 'builds/unix'.
|
|
#
|
|
# This should re-generate the following files:
|
|
#
|
|
# config.mk
|
|
# Jamfile
|
|
# install
|
|
#
|
|
CFG="$@" make setup unix
|