Gentoo Archives: gentoo-commits

From: Liam McLoughlin <hexxeh@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoaster:webui commit in: web/
Date: Thu, 28 Jul 2011 02:02:11
Message-Id: cb5bbb72d305e53fded087f8df6f35be5d37188e.hexxeh@gentoo
1 commit: cb5bbb72d305e53fded087f8df6f35be5d37188e
2 Author: Liam McLoughlin <hexxeh <AT> hexxeh <DOT> net>
3 AuthorDate: Thu Jul 28 01:12:40 2011 +0000
4 Commit: Liam McLoughlin <hexxeh <AT> hexxeh <DOT> net>
5 CommitDate: Thu Jul 28 01:12:40 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoaster.git;a=commit;h=cb5bbb72
7
8 Fix config generation double quoting
9
10 ---
11 web/process.php | 8 ++++----
12 1 files changed, 4 insertions(+), 4 deletions(-)
13
14 diff --git a/web/process.php b/web/process.php
15 index e0bf38a..b16f272 100644
16 --- a/web/process.php
17 +++ b/web/process.php
18 @@ -73,10 +73,10 @@ HOSTNAME=$hostname
19 ROOT_PASSWORD=$rootPass
20 DEFAULT_USERNAME=$username
21 DEFAULT_PASSWORD=$password
22 -USE_FLAGS='$use'
23 -PACKAGE_USE='$puse'
24 -FEATURES='$features'
25 -PACKAGE_ACCEPT_KEYWORDS='$keywords'
26 +USE_FLAGS=$use
27 +PACKAGE_USE=$puse
28 +FEATURES=$features
29 +PACKAGE_ACCEPT_KEYWORDS=$keywords
30 PACKAGES_LIST=$packagesList
31 OUTPUT_FORMAT=$outputFormat";