summaryrefslogtreecommitdiffstats
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-22 11:21:21 +0000
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-22 11:21:21 +0000
commit524a54cf87441bb4ba6676aff72494c0c1ceb7eb (patch)
tree84a0524e4466f8b47ca5606f7664d553cfa89887 /gcc/configure.ac
parentee08696532a0e1dd57a5d309d969643a2744a89b (diff)
downloadppe42-gcc-524a54cf87441bb4ba6676aff72494c0c1ceb7eb.tar.gz
ppe42-gcc-524a54cf87441bb4ba6676aff72494c0c1ceb7eb.zip
gcc/
2004-09-22 Kelley Cook <kcook@gcc.gnu.org> * aclocal.m4: Import AM_PROG_CC_C_O and AM_AUX_DIR_EXPAND. * configure.ac: Call AM_PROG_CC_C_O instead of AC_PROG_CC_C_O. Create build and doc directories along with the language directories. Don't create doc directory separately. * configure: Regenerate. * Makefile.in: Create all object and executables files built with the build compiler in a build/ directory. (genobjnames): Add missing build objects. (STAGESTUFF): Don't stage the gen* programs. (ggc-none.o): Define dependencies for the target compiler. (build-print-rtl.o): Rename to build/print-rtl.o. (build-errors.o): Rename to build/errors.o. (build-varray.o): Rename to build/varray.o. (maintainerclean): Delete the contents of the build directory. ($(genobjs): %.o): Explicitly use -o. (build/insn-conditions.o): Delete specfic rule to use generic rule. (build/gengtype-lex.o): Likewise. (build/gengtype-yacc.o): Likewise. (build/gcov-iov.o): Likewise. gcc/java 2004-09-22 Kelley Cook <kcook@gcc.gnu.org> * Make-lang.in: Revert the gcc-none.o change. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87854 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac12
1 files changed, 2 insertions, 10 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index a7916591654..0061a7dea86 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -269,7 +269,7 @@ rm -f a.out a.exe b.out
# Find the native compiler
AC_PROG_CC
-AC_PROG_CC_C_O
+AM_PROG_CC_C_O
# autoconf is lame and doesn't give us any substitution variable for this.
if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
NO_MINUS_C_MINUS_O=yes
@@ -3262,14 +3262,6 @@ AC_SUBST(target_cpu_default)
AC_SUBST_FILE(language_hooks)
-# If it doesn't already exist, create document directory
-echo "checking for the document directory." 1>&2
-if test -d doc ; then
- true
-else
- mkdir doc
-fi
-
# Echo link setup.
if test x${build} = x${host} ; then
if test x${host} = x${target} ; then
@@ -3305,7 +3297,7 @@ case ${CONFIG_HEADERS} in
echo > cstamp-h ;;
esac
# Make sure all the subdirs exist.
-for d in $subdirs
+for d in $subdirs doc build
do
test -d $d || mkdir $d
done
OpenPOWER on IntegriCloud