diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Makefile.drakxtools | 1 | ||||
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/standalone.pm | 5 |
3 files changed, 7 insertions, 1 deletions
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 <install@mandriva.com> ', $::license, "\n"; } |