mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 15:02:50 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: 05ed724bfd
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-02-22 (Wed, 22 Feb 2017)
Origin message was:
------------------
- autogen.sh: add 'autoreconf -fi' call
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
18 lines
308 B
Bash
Executable File
18 lines
308 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
|
|
|
|
autoreconf -fi
|