summaryrefslogtreecommitdiffstats
path: root/knetworkconf/update_backends.sh
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:00:43 -0600
commit2c4a290ae270924340991931a9e0ca793f8e9443 (patch)
tree7aa3b953d70dbdd6a5de525cdd7a5f4319ee1dd5 /knetworkconf/update_backends.sh
parent567923f30f7c0700cb526f26c20b5577bfe2a802 (diff)
downloadtdeadmin-2c4a290ae270924340991931a9e0ca793f8e9443.tar.gz
tdeadmin-2c4a290ae270924340991931a9e0ca793f8e9443.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'knetworkconf/update_backends.sh')
-rwxr-xr-xknetworkconf/update_backends.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/knetworkconf/update_backends.sh b/knetworkconf/update_backends.sh
deleted file mode 100755
index 9b77d13..0000000
--- a/knetworkconf/update_backends.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/bash
-echo 'Network backend updating script of KNetworkConf'
-echo
-
-if [ $# -eq 0 ]
-then
- echo "Use: $0 src_path dest_path"
- echo
- exit 1
-fi
-
-if [ "$1" = "" ]
-then
- echo 'You have to specify the source directory of the new scripts'
- echo
- exit 1
-elif [ "$2" = "" ]
-then
- echo 'You have to specify the destination directory for the new scripts'
- echo
- exit 1
-fi
-
-if [ ! -d $1 ]
-then
- echo "$1 Isn't a directory"
- echo
- exit 1
-elif [ ! -d $2 ]
-then
- echo "$2 Isn't a directory"
- echo
- exit 1
-fi
-
-diractual=`pwd`
-cd $1;
-cp -f AUTHORS debug.pl.in file.pl.in general.pl.in guess_system.sh mkinstalldirs network-conf.in network.pl.in NEWS parse.pl.in platform.pl.in README replace.pl.in report.pl.in service-list.pl.in service.pl.in system-tools-backends.pc.in type1inst util.pl.in xml.pl.in process.pl.in $2
-
-echo
-echo 'Ready, dont forget to check configure.in.in or Makefile.am to see if they need further updating.'
-echo