diff options
author | Joan Touzet <wohali@apache.org> | 2017-03-19 02:20:33 -0400 |
---|---|---|
committer | Joan Touzet <wohali@apache.org> | 2017-03-19 02:20:33 -0400 |
commit | 942f33e18dccbea68917856c27e32c9d86204393 (patch) | |
tree | 048ccd9105e22f49f0ac92fe10c63b916ad6cbe3 /configure.ps1 | |
parent | d022ebe4cadd4c76bad89e96afb45779450bae54 (diff) | |
download | couchdb-942f33e18dccbea68917856c27e32c9d86204393.tar.gz |
Remove TeX/LaTeX and texinfo from the build chain
Diffstat (limited to 'configure.ps1')
-rw-r--r-- | configure.ps1 | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/configure.ps1 b/configure.ps1 index ee8638c70..8420e1f58 100644 --- a/configure.ps1 +++ b/configure.ps1 @@ -29,11 +29,9 @@ -ViewindexDir DIR specify the view directory [LOCALSTATEDIR\lib] -LogDir DIR specify the log directory [LOCALSTATEDIR\log] -DataDir DIR read-only architecture-independent data [DATAROOTDIR] - -InfoDir DIR info documentation [DATAROOTDIR\info] -ManDir DIR man documentation [DATAROOTDIR\man] -DocDir DIR documentation root [DATAROOTDIR\doc\apache-couchdb] -HTMLDir DIR html documentation [DOCDIR\html] - -PDFDir DIR pdf documentation [DOCDIR\pdf] .LINK http://couchdb.apache.org/ #> @@ -81,16 +79,12 @@ Param( [ValidateNotNullOrEmpty()] [string]$DataDir = "$DataRootDir", # read-only arch.-independent data (default $DataRootDir) [ValidateNotNullOrEmpty()] - [string]$InfoDir = "$DataRootDir\info", # info documentation (default $DataRootDir\info) - [ValidateNotNullOrEmpty()] [string]$ManDir = "$DataRootDir\man", # man documentation (default $DataRootDir\man) [ValidateNotNullOrEmpty()] [string]$DocDir = "$DataRootDir\doc\apache-couchdb", # man documentation (default $DataRootDir\doc\apache-couchdb) [ValidateNotNullOrEmpty()] [string]$HTMLDir = "$DocDir\html", # html documentation (default $DocDir\html) - [ValidateNotNullOrEmpty()] - [string]$PDFDir = "$DocDir\pdf" # pdf documentation (default $DocDir\pdf) ) @@ -103,7 +97,7 @@ Push-Location $rootdir # The test script lives in test/build/test-configure.sh If ($Test) { Write-Output @" -"$Prefix" "$ExecPrefix" "$BinDir" "$LibExecDir" "$SysConfDir" "$DataRootDir" "$DataDir" "$LocalStateDir" "$RunStateDir" "$DocDir" "$LibDir" "$DatabaseDir" "$ViewIndexDir" "$LogDir" "$ManDir" "$InfoDir" "$HTMLDir" "$PDFDir" +"$Prefix" "$ExecPrefix" "$BinDir" "$LibExecDir" "$SysConfDir" "$DataRootDir" "$DataDir" "$LocalStateDir" "$RunStateDir" "$DocDir" "$LibDir" "$DatabaseDir" "$ViewIndexDir" "$LogDir" "$ManDir" "$HTMLDir" "@ exit 0 } @@ -175,9 +169,7 @@ view_index_dir = $ViewIndexDir log_file = $LogFile html_dir = $HTMLDir -pdf_dir = $PDFDir man_dir = $ManDir -info_dir = $InfoDir with_fauxton = $BuildFauxton with_docs = $BuildDocs |