root/openwsman/trunk/autoconfiscate.sh

Revision 572, 297 bytes (checked in by nashif, 2 years ago)

make the code more portable (compile on Darwin)

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1 #!/bin/sh
2
3 UNAME=`uname`
4
5 if [ "$UNAME" = "Darwin" ]; then
6 libtoolize --copy --force --automake
7 aclocal-1.9
8 autoheader-2.60
9 automake-1.9 --add-missing --copy --foreign
10 autoconf-2.60
11
12 else
13 libtoolize --copy --force --automake
14 aclocal
15 autoheader
16 automake --add-missing --copy --foreign
17 autoconf
18 fi