summaryrefslogtreecommitdiff
path: root/srtp/update.sh
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-07-13 16:05:16 +0000
committerErwin Nindl <nine@wirdorange.org>2007-07-13 16:05:16 +0000
commit17b77485fa4ea8ecbf472e2d1daa15007ff93705 (patch)
tree1b1c72d09b898f8d5dcdd68dcbd86d030e66ded5 /srtp/update.sh
parentbugfix window size (diff)
* removed srtp directory
* install libsrtp under /usr/local/lib * cleaned up Makefile
Diffstat (limited to 'srtp/update.sh')
-rwxr-xr-xsrtp/update.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/srtp/update.sh b/srtp/update.sh
deleted file mode 100755
index 595b647..0000000
--- a/srtp/update.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-#
-# update.sh
-#
-# update copyright dates in files
-
-a=`find . -name "*.[ch]"`
-for x in $a; do
- sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
- mv $x.tmp $x;
-done
-
-
-
-