[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1282165945-27195-1-git-send-email-artagnon@gmail.com>
Date: Thu, 19 Aug 2010 02:42:25 +0530
From: Ramkumar Ramachandra <artagnon@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Michal Marek <mmarek@...e.cz>, linux-kbuild@...r.kernel.org
Subject: [PATCH] scripts/mkversion: Simplify script
Simplify the script and add a line to help editors recognize this as a
shell script.
Signed-off-by: Ramkumar Ramachandra <artagnon@...il.com>
Cc: Michal Marek <mmarek@...e.cz>
---
scripts/mkversion | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/scripts/mkversion b/scripts/mkversion
index c12addc..6fedcb3 100644
--- a/scripts/mkversion
+++ b/scripts/mkversion
@@ -1,6 +1,3 @@
-if [ ! -f .version ]
-then
- echo 1
-else
- expr 0`cat .version` + 1
-fi
+#!/bin/sh
+
+[ ! -f .version ] && echo 1 || expr 0`cat .version` + 1
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists