mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 23:11:41 +00:00
aac2354f5c
cd fluidsynth && git mv * ../
12 lines
407 B
Bash
Executable file
12 lines
407 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Some poor souls have linux distributions, that don't install pkg-config by default.
|
|
#pkg-config --version does actually nothing, but it will fail and give 'sort of' an error message...
|
|
|
|
pkg-config --version > /dev/null \
|
|
&& aclocal \
|
|
&& libtoolize -f \
|
|
&& autoheader \
|
|
&& autoconf \
|
|
&& automake -a
|
|
|