diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 02:12:14 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 02:26:02 +0800 |
commit | 333aeb884c7ac134155ffa73aad8699c536d44d9 (patch) | |
tree | b993d36bac596ffef314f9b854e8e0e111feb963 /lib | |
parent | c2091dfc9e6b9054324226cff8c6b140273bd618 (diff) | |
download | gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar.gz gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar.bz2 gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar.lz gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar.xz gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.tar.zst gsoc2013-epiphany-333aeb884c7ac134155ffa73aad8699c536d44d9.zip |
lib/egg: update scripts
Bug #580557
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/egg/update-from-egg.sh | 8 | ||||
-rwxr-xr-x | lib/egg/update-toolbareditor-from-libegg.sh | 35 |
2 files changed, 8 insertions, 35 deletions
diff --git a/lib/egg/update-from-egg.sh b/lib/egg/update-from-egg.sh index dd39b1fa0..c7b8320e0 100755 --- a/lib/egg/update-from-egg.sh +++ b/lib/egg/update-from-egg.sh @@ -1,5 +1,13 @@ #!/bin/sh +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 diff --git a/lib/egg/update-toolbareditor-from-libegg.sh b/lib/egg/update-toolbareditor-from-libegg.sh deleted file mode 100755 index e047aa1dd..000000000 --- a/lib/egg/update-toolbareditor-from-libegg.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# update-toolbareditor-from-libegg.sh -# -# Get latest toolbar editor from libegg -# Developers using the toolbar editor in their projects can use this script to -# fetch the latest toolbar editor from libegg. Just run this script -# - -SCRIPT_NAME=update-toolbareditor-from-libegg.sh -SVN_URI=http://svn.gnome.org/svn/libegg/trunk/libegg/toolbareditor -FILES="egg-editable-toolbar.c \ - egg-toolbars-model.c \ - egg-toolbar-editor.c \ - eggtreemultidnd.c \ - egg-editable-toolbar.h \ - egg-toolbars-model.h \ - egg-toolbar-editor.h \ - eggtreemultidnd.h \ - eggmarshalers.list" - - -if [ -z $1 ]; then - echo "Obtaining latest version of "$SCRIPT_NAME - svn export $SVN_URI/$SCRIPT_NAME - ./$SCRIPT_NAME --update-sources -fi -if [ "$1" = "--update-sources" ]; then - - echo "Obtaining latest version of the sources" - for FILE in $FILES - do - svn export $SVN_URI/$FILE - done -fi - |