]> gitweb.factorcode.org Git - factor.git/commitdiff
Support unix-x86.32 and winnt-x86.32 boot images in factor.sh
authorSheepson Apprentice <sheeple@freebsd-x86-32.(none)>
Sun, 4 Apr 2010 19:39:59 +0000 (14:39 -0500)
committerSheepson Apprentice <sheeple@freebsd-x86-32.(none)>
Sun, 4 Apr 2010 19:39:59 +0000 (14:39 -0500)
build-support/factor.sh

index 38bdc8183c37b24741a11148ce6bea31c421a4d7..68d138c3eff5fd33d0353f1a04911f9c8f40859d 100755 (executable)
@@ -291,9 +291,15 @@ set_build_info() {
     elif [[ $OS == winnt && $ARCH == x86 && $WORD == 64 ]] ; then
         MAKE_IMAGE_TARGET=winnt-x86.64
         MAKE_TARGET=winnt-x86-64
+    elif [[ $OS == winnt && $ARCH == x86 && $WORD == 32 ]] ; then
+        MAKE_IMAGE_TARGET=winnt-x86.32
+        MAKE_TARGET=winnt-x86-32
     elif [[ $ARCH == x86 && $WORD == 64 ]] ; then
         MAKE_IMAGE_TARGET=unix-x86.64
         MAKE_TARGET=$OS-x86-64
+    elif [[ $ARCH == x86 && $WORD == 32 ]] ; then
+        MAKE_IMAGE_TARGET=unix-x86.32
+        MAKE_TARGET=$OS-x86-32
     else
         MAKE_IMAGE_TARGET=$ARCH.$WORD
         MAKE_TARGET=$OS-$ARCH-$WORD