diff options
author | Stef Walter <stefw@redhat.com> | 2013-04-18 22:11:33 +0200 |
---|---|---|
committer | Stef Walter <stefw@redhat.com> | 2013-04-19 08:05:04 +0200 |
commit | 9fc8444f2c4aca8a551f1300d734742b7d99be00 (patch) | |
tree | ce7a192feea559e1b2351bc5ac56b80e804b734b /libs/prepare-libraries.sh | |
parent | 22bfb1beeb9c7fbcdc814798d361e28b3b81f971 (diff) |
Diffstat (limited to 'libs/prepare-libraries.sh')
-rw-r--r-- | libs/prepare-libraries.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libs/prepare-libraries.sh b/libs/prepare-libraries.sh deleted file mode 100644 index b993312..0000000 --- a/libs/prepare-libraries.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -# Unzips, prepares and patches the domc and depending libraries -# for use with the rtfx. -# -# The tar files should be in the 'files' directory as should the -# patches. - -cd `dirname $0` - -# Delete the original directories -rm -rf domc || exit 1 -rm -rf libmba || exit 1 - -# Unzip the libraries -echo "untarring dist files..." -tar -zxf files/domc-*.tar.gz || exit 1 -tar -zxf files/libmba-*.tar.gz || exit 1 - -# Rename the directories -echo "renaming directories..." -mv domc-* domc || exit 1 -mv libmba-* libmba || exit 1 - -# Patch the directories -echo "patching the distributions..." -patch -p0 < files/domc-library.patch -patch -p0 < files/libmba-library.patch - |