What is the problem?
Thanks
Mike
bash-2.03# make setup check
( cat warn-auto.sh; \
echo CC=\'`head -1 conf-cc`\'; \
echo LD=\'`head -1 conf-ld`\' \
) > auto-ccld.sh
cat auto-ccld.sh make-load.sh > make-load
chmod 755 make-load
cat auto-ccld.sh find-systype.sh > find-systype
chmod 755 find-systype
./find-systype > systype
( cat warn-auto.sh; ./make-load "`cat systype`" ) > load
chmod 755 load
cat auto-ccld.sh make-compile.sh > make-compile
chmod 755 make-compile
( cat warn-auto.sh; ./make-compile "`cat systype`" ) > \
compile
chmod 755 compile
( ( ./compile tryvfork.c && ./load tryvfork ) >/dev/null \
2>&1 \
&& cat fork.h2 || cat fork.h1 ) > fork.h
rm -f tryvfork.o tryvfork
./compile qmail-local.c
qmail-local.c: In function `main':
qmail-local.c:450: warning: return type of `main' is not `int'
./compile qmail.c
/usr/ccs/bin/as: "/var/tmp/ccSOmxW2.s", line 486: error: unknown opcode
".subsection"
/usr/ccs/bin/as: "/var/tmp/ccSOmxW2.s", line 486: error: statement syntax
/usr/ccs/bin/as: "/var/tmp/ccSOmxW2.s", line 610: error: unknown opcode
".previous"
/usr/ccs/bin/as: "/var/tmp/ccSOmxW2.s", line 610: error: statement syntax
*** Error code 1
make: Fatal error: Command failed for target `qmail.o'