diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:59 -0600 |
commit | 1515a4f2eb9cf023ed7f9c2e10106b5e93164a08 (patch) | |
tree | d5617734090b254659ff331ce7d1e574c4807caf /kunittest/kunittestmod | |
parent | f8069e2ea048f2657cc417d83820576ec55c181b (diff) | |
download | tdesdk-1515a4f2eb9cf023ed7f9c2e10106b5e93164a08.tar.gz tdesdk-1515a4f2eb9cf023ed7f9c2e10106b5e93164a08.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kunittest/kunittestmod')
-rwxr-xr-x | kunittest/kunittestmod | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/kunittest/kunittestmod b/kunittest/kunittestmod deleted file mode 100755 index ba039844..00000000 --- a/kunittest/kunittestmod +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -FOLDER="--folder $PWD" -QUERY="" - -while [ "$#" -gt 0 ] -do - case $1 in - -f|--folder) - FOLDER="--folder $2" - shift - ;; - -q|--query) - QUERY="--query $2" - shift - ;; - esac - # to process the next parameter - shift -done - -APP=`which kunittestguimodrunner` -if [ ! -x $APP ] -then - kdialog --error "Sorry, $APP is not a valid executable file." - exit 1; -fi - -DEBUGHELPER=`which kunittest_debughelper` -if [ -z $DEBUGHELPER ] -then - kdialog --error "Sorry, couldn't find the kunittest_debughelper script." - exit 3 -fi - -DCOPNAME="KUnitTestModRunner" -$APP --enable-dbgcap $FOLDER $QUERY 2>&1 | perl $DEBUGHELPER "$DCOPNAME-*" |