diff options
Diffstat (limited to 'lib/egg/update-from-egg.sh')
-rwxr-xr-x | lib/egg/update-from-egg.sh | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/lib/egg/update-from-egg.sh b/lib/egg/update-from-egg.sh deleted file mode 100755 index b3a78fd8b..000000000 --- a/lib/egg/update-from-egg.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -EGGFILES="egg-editable-toolbar.c \ - egg-toolbars-model.c \ - egg-toolbar-editor.c \ - egg-editable-toolbar.h \ - egg-toolbars-model.h \ - egg-toolbar-editor.h \ - eggmarshalers.list" - -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 - SRCFILE=$EGGDIR/$FILE - if ! test -e $SRCFILE ; then - if test -e $EGGDIR/tray/$FILE ; then - SRCFILE=$EGGDIR/tray/$FILE - fi - if test -e $EGGDIR/util/$FILE ; then - SRCFILE=$EGGDIR/util/$FILE - fi - if test -e $EGGDIR/toolbareditor/$FILE ; then - SRCFILE=$EGGDIR/toolbareditor/$FILE - fi - if test -e $EGGDIR/treeviewutils/$FILE ; then - SRCFILE=$EGGDIR/treeviewutils/$FILE - fi - if test -e $EGGDIR/dropdowntoolbutton/$FILE; then - SRCFILE=$EGGDIR/dropdowntoolbutton/$FILE - fi - fi - if cmp -s $SRCFILE $FILE; then - echo "File $FILE is unchanged" - else - cp $SRCFILE $FILE || die "Could not move $SRCFILE to $FILE" - echo "Updated $FILE" - fi -done |