removed more old libs
[TestXSLT.git] / libexpat-helper.sh
diff --git a/libexpat-helper.sh b/libexpat-helper.sh
deleted file mode 100644 (file)
index 6df64d3..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/sh
-
-echo executing $0
-echo ACTION is $ACTION
-echo PWD is `pwd`
-
-SUBDIR=libexpat
-GNUSTYLEPREFIX=$TARGET_BUILD_DIR/libexpat-gnustyle
-
-# make sure things match our expectations
-#
-if [ ! -d $SUBDIR ]; then
-       echo no $SUBDIR dir in current dir `pwd`, cannot continue!
-       exit 1
-fi
-
-
-if [ x$ACTION = "xclean" ]; then
-
-       echo cleaning up...
-       rm -rf $GNUSTYLEPREFIX
-       cd $SUBDIR
-       make distclean
-
-elif [ x$ACTION = "x" ]; then
-
-       echo building...
-
-       cd $SUBDIR
-
-       if [ ! -f Makefile ]; then
-
-               echo no Makefile, running configure
-
-               ./configure --prefix=$GNUSTYLEPREFIX
-
-       fi
-
-       
-       if [ ! -d $GNUSTYLEPREFIX ]; then
-
-               make install
-
-       fi
-
-
-fi
-
-
-
-