mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
no idea what the complicated stuff was good for, but it surely broke cross compiling with a openembedded-built SDK, so go for simplicity
16 lines
292 B
Bash
Executable File
16 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
|
|
package="tuxbox-neutrino"
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cd "$srcdir"
|
|
echo "Generating configuration files for $package, please wait...."
|
|
|
|
aclocal --force
|
|
libtoolize --force
|
|
autoconf --force
|
|
autoheader --force
|
|
automake --add-missing --force-missing --foreign
|