mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
4461a74403
A new directory install/po has been added which contains all the translations for all files in IPA. The build has been agumented to build these files. Also the autogen.sh script was mostly replaced by autoreconf, the preferred method. The old autogen.sh sript also had some serious bugs in the way it compared versions which caused it to run old versions of some of the tools, using standared autoreconf is much better.
15 lines
414 B
Bash
Executable File
15 lines
414 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# automake demands these files exist when run in gnu mode which is the default,
|
|
# automake can be run in foreign mode to avoid failing on the absence of these
|
|
# files, but unfortunately there is no way to pass the --foreign flag to
|
|
# automake when run from autoreconf.
|
|
for f in NEWS README AUTHORS ChangeLog; do
|
|
if [ ! -e $f ]; then
|
|
touch $f
|
|
fi
|
|
done
|
|
|
|
autoreconf -i
|
|
./configure ${1+"$@"}
|