From 35328ee96437da07bc6cf8d4e16b4de34e71bd83 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 2 Aug 2007 18:06:22 +0000 Subject: report real version on --help, set by Makefie --- perl-install/Makefile.drakxtools | 1 + perl-install/NEWS | 2 ++ perl-install/standalone.pm | 5 ++++- 3 files changed, 7 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/Makefile.drakxtools b/perl-install/Makefile.drakxtools index 049eff3dc..73852775b 100644 --- a/perl-install/Makefile.drakxtools +++ b/perl-install/Makefile.drakxtools @@ -26,6 +26,7 @@ $(DIRS): [ ! -e $@/Makefile ] || $(MAKE) -C $@ install: + perl -pi -e "s/\"VER\"(; # version)/\"$(VERSION)\"\1/" standalone.pm mkdir -p $(BINDEST) $(ETCDEST) $(SBINDEST) $(DATADIR)/{harddrake,pixmaps,icons/{large,mini},autostart} $(PIXDIR) $(INITDIR) $(MENUDIR) install -d $(INLIBDEST_DIRS:%=$(LIBDEST)/%) install $(STANDALONEPMS) standalone/service_harddrake.sh standalone/convert $(SBINDEST) diff --git a/perl-install/NEWS b/perl-install/NEWS index 66c3a9785..e17460d0c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- report real version on --help + Version 10.4.156 - 02 August 2007, by Thierry Vignaud - localedrake: diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 721a22bd0..dc8339662 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -133,9 +133,12 @@ sub __exit { } +sub real_version { + return "VER"; # version automatically set from Makefile +} sub version() { - print 'Drakxtools version 10 + print 'Drakxtools version ' . real_version() . ' Copyright (C) 1999-2006 Mandriva by ', $::license, "\n"; } -- cgit v1.2.1