mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 15:02:50 +02:00
Origin commit data
------------------
Commit: d7f1984ab0
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-11-03 (Fri, 03 Nov 2017)
Origin message was:
------------------
- autogen.sh: align package name
16 lines
288 B
Bash
Executable File
16 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
package="ni-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
|