test list

This commit is contained in:
anil
2020-08-19 15:07:37 +02:00
parent bfcd2aacc5
commit cb293de686
242 changed files with 370216 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
pushd $dir
if [ ! -d src ]; then
tar -xf src.tar.gz
cp libxml.patch src
pushd src
cat libxml.patch | patch -p0
rm libxml.patch
./configure --host=i686-pc-linux-gnu "CFLAGS=-m32 -std=gnu99" "CXXFLAGS=-m32" "LDFLAGS=-m32"
popd
fi