steal from profterm to fix build

2002-07-15  jacob berkman  <jacob@ximian.com>

	* src/update-from-egg.sh: steal from profterm to fix build
This commit is contained in:
jacob berkman
2002-07-15 14:18:51 +00:00
committed by Jacob Berkman
parent badb397bce
commit dccd7a9b99
2 changed files with 29 additions and 0 deletions

25
src/update-from-egg.sh Executable file
View File

@ -0,0 +1,25 @@
#!/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