From dbf935dae6917b1c6f322f1a5c34c315fa8ba347 Mon Sep 17 00:00:00 2001 From: Paul Fox Date: Mon, 27 Mar 2006 20:29:33 +0000 Subject: drop obsolete version string in favor of actual BB version (from Bernhard Fischer) --- editors/vi.c | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/editors/vi.c b/editors/vi.c index 3bf9ac3f9..6e5f07ee9 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -3,24 +3,9 @@ * tiny vi.c: A small 'vi' clone * Copyright (C) 2000, 2001 Sterling Huxley * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -static const char vi_Version[] = - "$Id: vi.c,v 1.38 2004/08/19 19:15:06 andersen Exp $"; - /* * To compile for standalone use: * gcc -Wall -Os -s -DSTANDALONE -o vi vi.c @@ -85,6 +70,9 @@ static const char vi_Version[] = #include #ifndef STANDALONE #include "busybox.h" +#define vi_Version BB_VER " " BB_BT +#else +#define vi_Version "standalone" #endif /* STANDALONE */ #ifdef CONFIG_LOCALE_SUPPORT -- cgit v1.2.3