summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2006-07-26 08:31:05 +0000
committerVincent Untz <vuntz@src.gnome.org>2006-07-26 08:31:05 +0000
commit419e063a248baf9a56b3f41ac2377a941c2bde10 (patch)
tree655ee6245e87b187a997e1053283c298124d9620
parent05323ef21ace91444d98dc002d9cbd4af15b82d8 (diff)
downloadmetacity-419e063a248baf9a56b3f41ac2377a941c2bde10.tar.gz
also kill this
2006-07-26 Vincent Untz <vuntz@gnome.org> * src/update-from-egg.sh: also kill this
-rw-r--r--ChangeLog4
-rwxr-xr-xsrc/update-from-egg.sh25
2 files changed, 4 insertions, 25 deletions
diff --git a/ChangeLog b/ChangeLog
index 395c619c..509d4da3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-26 Vincent Untz <vuntz@gnome.org>
+
+ * src/update-from-egg.sh: also kill this
+
2006-07-25 Vincent Untz <vuntz@gnome.org>
* src/Makefile.am, ui.c: Kill usage of libegg. #348633.
diff --git a/src/update-from-egg.sh b/src/update-from-egg.sh
deleted file mode 100755
index 9be68a9b..00000000
--- a/src/update-from-egg.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-function die() {
- echo $*
- exit 1
-}
-
-if test -z "$EGGDIR"; then
- echo "Must set EGGDIR"
- exit 1
-fi
-
-if test -z "$EGGFILES"; then
- echo "Must set EGGFILES"
- exit 1
-fi
-
-for FILE in $EGGFILES; do
- if cmp -s $EGGDIR/$FILE $FILE; then
- echo "File $FILE is unchanged"
- else
- cp $EGGDIR/$FILE $FILE || die "Could not move $EGGDIR/$FILE to $FILE"
- echo "Updated $FILE"
- fi
-done