From 39fed8496bd7303c85403ba0c7507172eb1d7322 Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Mon, 25 Apr 2011 11:16:55 -0500 Subject: export: Fix version quoting in solaris packaging Signed-off-by: Sol Jerome --- tools/export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/export.py') diff --git a/tools/export.py b/tools/export.py index 5e48a3613..d32ad3a60 100755 --- a/tools/export.py +++ b/tools/export.py @@ -71,11 +71,11 @@ for line in fileinput.input('solaris/Makefile', inplace=1): sys.stdout.write(line) for line in fileinput.input('solaris/pkginfo.bcfg2', inplace=1): if line.startswith('VERSION='): - line = line.replace(line, 'VERSION=%s\n' % version) + line = line.replace(line, 'VERSION="%s"\n' % version) sys.stdout.write(line) for line in fileinput.input('solaris/pkginfo.bcfg2-server', inplace=1): if line.startswith('VERSION='): - line = line.replace(line, 'VERSION=%s\n' % version) + line = line.replace(line, 'VERSION="%s"\n' % version) sys.stdout.write(line) # update the version in reports for line in fileinput.input('src/lib/Server/Reports/reports/templates/base.html', -- cgit v1.2.3-1-g7c22