Add debian to build commands for Install Guide

Change-Id: I13d2eccb0e9c5b85a7d63f04afa0033891e6afd7
This commit is contained in:
Andreas Jaeger 2013-10-10 19:45:19 +02:00
parent 2331caf926
commit 06c454ba5d
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@
12.04 (LTS)</a><br/> 12.04 (LTS)</a><br/>
Note: build Note: build
locally with "mvn locally with "mvn
generate-sources -Doperating.system=apt -Dprofile.os=ubuntu".</dd> generate-sources -Doperating.system=apt -Dprofile.os='ubuntu;debian'".</dd>
<dd><a <dd><a
href="install-guide/target/docbkx/webhelp/local/install-guide/install/yum/content/index.html" href="install-guide/target/docbkx/webhelp/local/install-guide/install/yum/content/index.html"
>Installation Guide for Red Hat >Installation Guide for Red Hat

View File

@ -450,7 +450,7 @@ def build_book(book):
output = subprocess.check_output( output = subprocess.check_output(
["mvn", "generate-sources", "-B", ["mvn", "generate-sources", "-B",
"-Doperating.system=yum", "-Doperating.system=yum",
"-Dprofile.os='centos;fedora;rhel'"], "-Dprofile.os=centos;fedora;rhel"],
stderr=subprocess.STDOUT stderr=subprocess.STDOUT
) )
# Build openSUSE # Build openSUSE
@ -464,7 +464,7 @@ def build_book(book):
base_book = "install-guide (for Ubuntu)" base_book = "install-guide (for Ubuntu)"
output = subprocess.check_output( output = subprocess.check_output(
["mvn", "generate-sources", "-B", ["mvn", "generate-sources", "-B",
"-Doperating.system=apt", "-Dprofile.os=ubuntu"], "-Doperating.system=apt", "-Dprofile.os=ubuntu;debian"],
stderr=subprocess.STDOUT stderr=subprocess.STDOUT
) )
# Success # Success