diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-07 00:45:55 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-07 00:45:55 +0800 |
commit | 8790e14c4b775cd068b0c7da1f9fe9b3bf086378 (patch) | |
tree | e993896a6437b9abb3cd95b6888566ee1fd37bf2 /tools/evolution-addressbook-clean.in | |
parent | d5fa188835044ab88895c12e73f3bb31cea8ebd8 (diff) | |
download | gsoc2013-evolution-8790e14c4b775cd068b0c7da1f9fe9b3bf086378.tar.gz gsoc2013-evolution-8790e14c4b775cd068b0c7da1f9fe9b3bf086378.tar.zst gsoc2013-evolution-8790e14c4b775cd068b0c7da1f9fe9b3bf086378.zip |
subst in $(toolsdir) instead of $(bindir)
* tools/Makefile.am: subst in $(toolsdir) instead of $(bindir)
* tools/evolution-addressbook-clean.in:
s/EVOLUTION_BINDIR/EVOLUTION_TOOLSDIR/
svn path=/trunk/; revision=19809
Diffstat (limited to 'tools/evolution-addressbook-clean.in')
-rw-r--r-- | tools/evolution-addressbook-clean.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/evolution-addressbook-clean.in b/tools/evolution-addressbook-clean.in index ec407296da..b7ee7ba167 100644 --- a/tools/evolution-addressbook-clean.in +++ b/tools/evolution-addressbook-clean.in @@ -9,7 +9,7 @@ sub do_system } } -$filename = `@EVOLUTION_BINDIR@/evolution-addressbook-export`; +$filename = `@EVOLUTION_TOOLSDIR@/evolution-addressbook-export`; if ($? != 0) { $! = $?; die $!; @@ -17,8 +17,8 @@ if ($? != 0) { $HOME = $ENV{"HOME"}; -system ("@EVOLUTION_BINDIR@/killev"); +system ("@EVOLUTION_TOOLSDIR@/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 ("@EVOLUTION_TOOLSDIR@/evolution-addressbook-import --input-file $filename"); do_system ("/bin/rm $filename"); |