Same autogen.sh tweak as for simgear to better handle irix vs.
linux. This will likely require more tweaking as other platforms report in. Fixed a warning that Makefile.am was generating.
This commit is contained in:
parent
80b4567d54
commit
6e11f22bc9
2 changed files with 7 additions and 8 deletions
|
@ -10,7 +10,6 @@ dist-hook:
|
|||
(cd $(top_srcdir); $(HOME)/projects/FlightGear-0.7/admin/am2dsp.pl)
|
||||
(cd $(top_srcdir); tar --exclude docs-mini/CVS --exclude hints/CVS \
|
||||
-cf - docs-mini ) | (cd $(distdir); tar xvf -)
|
||||
# tar cf - Simulator/FDM/JSBsim/aircraft Simulator/FDM/JSBsim/engine | (cd $(distdir); tar xvf -)
|
||||
|
||||
|
||||
##########################################################################
|
||||
|
|
14
autogen.sh
14
autogen.sh
|
@ -9,14 +9,14 @@ echo -n " automake: `automake --version | head -1 | awk '{print $4}'`"
|
|||
echo " ($AUTO_MAKE_VERSION)"
|
||||
echo ""
|
||||
|
||||
echo -n "Running aclocal"
|
||||
if [ $AUTO_MAKE_VERSION -ge 15 ]; then
|
||||
echo " -I ."
|
||||
aclocal -I .
|
||||
else
|
||||
echo ""
|
||||
aclocal
|
||||
ACLOCAL_OPTS=""
|
||||
if [ $AUTO_MAKE_VERSION -ge 14 ]; then
|
||||
if [ $OSTYPE = "IRIX" -o $OSTYPE = "IRIX64" ]; then echo " -I ."
|
||||
ACLOCAL_OPTS="-I ."
|
||||
fi
|
||||
fi
|
||||
echo "Running aclocal $ACLOCAL_OPTS"
|
||||
aclocal $ACLOCAL_OPTS
|
||||
|
||||
echo "Running autoheader"
|
||||
autoheader
|
||||
|
|
Loading…
Reference in a new issue