1
0
Fork 0

also kill this

2006-07-26  Vincent Untz  <vuntz@gnome.org>

	* src/update-from-egg.sh: also kill this
This commit is contained in:
Vincent Untz 2006-07-26 08:31:05 +00:00 committed by Vincent Untz
parent 05323ef21a
commit 419e063a24
2 changed files with 4 additions and 25 deletions

View file

@ -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.

View file

@ -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