1
0
mirror of https://gitlab.gnome.org/GNOME/evince synced 2024-06-30 22:54:23 +00:00
evince/cut-n-paste/update-from-egg.sh
Marco Pesenti Gritti cd2d70e467 Share it between all cut-n-paste subdirs
2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>

        * cut-n-paste/update-from-egg.sh:

        Share it between all cut-n-paste subdirs

        * cut-n-paste/recent-files/Makefile.am:

        Fix to use "global" update-from-egg.sh

        * cut-n-paste/recent-files/egg-recent-model.c:
        (egg_recent_model_changed_timeout), (egg_recent_model_finalize):
        * cut-n-paste/recent-files/egg-recent-view-gtk.c:
        (egg_recent_view_gtk_clear), (egg_recent_view_gtk_set_list),
        (egg_recent_view_gtk_finalize), (egg_recent_view_gtk_set_menu):

        Update from libegg

        * cut-n-paste/toolbar-editor/Makefile.am:

        Fix to use "global" update-from-egg.sh

        * cut-n-paste/toolbar-editor/eggmarshalers.list:

        Update from libegg
2005-05-09 12:21:28 +00:00

41 lines
843 B
Bash
Executable File

#!/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
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
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