~libecbufr-dev/libecbufr/0.8.6

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# let autoreconf do everything for us: it will call
#         autoconf, autoheader,  aclocal, automake, libtoolize ...
#
echo "*** Running autoreconf"
rm -f configure
autoreconf --force --install -Wno-portability
if [ -f configure ]; then
   echo "*** Done. You may now run configure"
else
	exit $?
fi

exit 0