mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 23:25:56 -05:00
11 lines
231 B
Bash
11 lines
231 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mv configure.in configure.in.mkdist
|
||
|
cat configure.in.mkdist | sed -e s/AM_INIT_AUTOMAKE.*$/AM_INIT_AUTOMAKE\(mt-daapd,cvs-20040318\)/ > configure.in
|
||
|
./reconf
|
||
|
./configure
|
||
|
make dist
|
||
|
mv configure.in.mkdist configure.in
|
||
|
|
||
|
|