diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-11-10 06:43:10 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-11-10 06:43:10 +0800 |
commit | 24098ef6747587cc054bd68cbd884767aff383c3 (patch) | |
tree | 1499336e756cb10fc04b11011c4c661ee861f11e | |
parent | 6a022cd38c443c1283ce04976754533a578672df (diff) | |
download | gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar.gz gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar.bz2 gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar.lz gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar.xz gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.tar.zst gsoc2013-evolution-24098ef6747587cc054bd68cbd884767aff383c3.zip |
Chop the output from `uname -s'. Thanks to Michael Gerdts for suggesting
* tools/killev: Chop the output from `uname -s'. Thanks to
Michael Gerdts for suggesting the fix.
svn path=/trunk/; revision=14652
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tools/killev | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2001-11-09 Ettore Perazzoli <ettore@ximian.com> + + * tools/killev: Chop the output from `uname -s'. Thanks to + Michael Gerdts for suggesting the fix. + 2001-11-09 Abel Cheung <maddog@linux.org.hk> * configure.in: Re-added zh_TW to ALL_LINGUAS. Translator keep diff --git a/tools/killev b/tools/killev index 0745d013e0..14b9f501cd 100755 --- a/tools/killev +++ b/tools/killev @@ -24,6 +24,7 @@ $debug=0; ## $sysname=`uname -s`; +chop $sysname; if ($sysname eq "SunOS") { $killcmd="pkill"; |