Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a804c08712b6ca93d8271580159ba3157ea75587

commit a804c08712b6ca93d8271580159ba3157ea75587
Author: Elentir <elen...@mailoo.org>
Date:   Sat Oct 17 21:25:49 2009 +0200

add --enable-gui option to configure

diff --git a/configure b/configure
index 27ecd96..b37c32b 100755
--- a/configure
+++ b/configure
@@ -37,6 +37,7 @@ parser.add_option("--enable-tftp", action="store_true", 
dest="tftp", help="Build
parser.add_option("--disable-tftp", action="store_false", dest="tftp", 
help="Don't build tftp installer image (default)")
parser.add_option("--repo", action="store", dest="repo", help="Select the repo 
to build for. Can be current (default), testing or stable")
parser.add_option("--prefix", action="store", dest="prefix", help="Select the 
install prefix (defaults to /usr/local)")
+parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build 
Fwife installer image")
(options, args) = parser.parse_args()

# if we want debug then we should add gdb and it's dependencies
@@ -128,6 +129,10 @@ if options.tftp:
socket.write("TFTP = true\n")
else:
socket.write("TFTP = false\n")
+if options.gui:
+       socket.write("GUI = true\n")
+else:
+       socket.write("GUI = false\n")

socket.write("PREFIX = %s\n" % options.prefix)
_______________________________________________
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to