aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-11-10 06:43:10 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-11-10 06:43:10 +0800
commit24098ef6747587cc054bd68cbd884767aff383c3 (patch)
tree1499336e756cb10fc04b11011c4c661ee861f11e
parent6a022cd38c443c1283ce04976754533a578672df (diff)
downloadgsoc2013-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--ChangeLog5
-rwxr-xr-xtools/killev1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d757a676f..c865c3421c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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";