summaryrefslogtreecommitdiff
path: root/build/build_ng.sh
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2006-03-20 13:07:24 +0000
committerFrans Pop <elendil@planet.nl>2006-03-20 13:07:24 +0000
commit6bf32522a459e8debd291a3d7c4eca9b3252af52 (patch)
tree3772a4b79c0d3ce054f123ac2648da8e5dccb6c2 /build/build_ng.sh
parent74339e5bdc10f5327065193bcb5cf97c4f553714 (diff)
downloadinstallation-guide-6bf32522a459e8debd291a3d7c4eca9b3252af52.zip
Remove db2latex ('NextGeneration') build infratructure from trunk as it is not being developed further and not maintained; keep README.ng for reference
Diffstat (limited to 'build/build_ng.sh')
-rwxr-xr-xbuild/build_ng.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/build/build_ng.sh b/build/build_ng.sh
deleted file mode 100755
index 0c3c2e475..000000000
--- a/build/build_ng.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-if [ -z "$languages" ]; then
- # Please add languages only if they build properly.
- # languages="en cs es fr ja nl pt_BR" # ca da de el eu it ru
-
- # Buildlist of languages to be included on RC2 CD's
- languages="ca cs da de en es eu fi fr it ja nl pt_BR ru tl"
-# languages="ja"
-fi
-
-if [ -z "$architectures" ]; then
- architectures="alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc"
-# architectures="i386"
-fi
-
-if [ -z "$destination" ]; then
- destination="/var/www/d-i/"
-fi
-
-if [ -z "$formats" ]; then
- formats="newps newpdf html htmlone text"
- #formats="html"
-fi
-
-[ -e "$destination" ] || mkdir -p "$destination"
-
-if [ "$official_build" ]; then
- # Propagate this to children.
- export official_build
-fi
-
-#noarchdir="yes"
-
-for lang in $languages; do
- for arch in $architectures; do
-# for format in $formats; do
- if [ -n "$noarchdir" ]; then
- destsuffix="$lang"
- else
- destsuffix="${lang}/${arch}"
- fi
- ./buildone_ng.sh $arch $lang $formats -d "$destination/$destsuffix"
-# done
- done
-done
-