diff options
author | nobody <nobody@localhost> | 2002-12-28 12:49:29 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-12-28 12:49:29 +0800 |
commit | b1face8c6b53c58513ce940393ab0f01c0f4ec17 (patch) | |
tree | 1e12040caec266ee2e16460c80583d4af3687d10 /tools/evolution-addressbook-clean.in | |
parent | 79d8fd91171f81a97c319616dcca32002269af55 (diff) | |
download | gsoc2013-evolution-GNOME_VFS_2_1_6.tar.gz gsoc2013-evolution-GNOME_VFS_2_1_6.tar.zst gsoc2013-evolution-GNOME_VFS_2_1_6.zip |
This commit was manufactured by cvs2svn to create tagGNOME_VFS_2_1_6
'GNOME_VFS_2_1_6'.
svn path=/tags/GNOME_VFS_2_1_6/; revision=19192
Diffstat (limited to 'tools/evolution-addressbook-clean.in')
-rw-r--r-- | tools/evolution-addressbook-clean.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tools/evolution-addressbook-clean.in b/tools/evolution-addressbook-clean.in deleted file mode 100644 index ec407296da..0000000000 --- a/tools/evolution-addressbook-clean.in +++ /dev/null @@ -1,24 +0,0 @@ -#! /usr/bin/perl -w - -sub do_system -{ - my ($command) = @_; - system ($command); - if ($? != 0) { - die "Command failed: $command"; - } -} - -$filename = `@EVOLUTION_BINDIR@/evolution-addressbook-export`; -if ($? != 0) { - $! = $?; - die $!; -} - -$HOME = $ENV{"HOME"}; - -system ("@EVOLUTION_BINDIR@/killev"); -do_system ("/bin/mv ${HOME}/evolution/local/Contacts/addressbook.db ${HOME}/evolution/local/Contacts/addressbook-backup.db"); -do_system ("@EVOLUTION_BINDIR@/evolution-addressbook-import --input-file $filename"); -do_system ("/bin/rm $filename"); - |