diff options
Diffstat (limited to 'gnu/usr.bin/gcc/f/config-lang.in')
-rw-r--r-- | gnu/usr.bin/gcc/f/config-lang.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/gcc/f/config-lang.in b/gnu/usr.bin/gcc/f/config-lang.in index fc0240aef59..74626241d8c 100644 --- a/gnu/usr.bin/gcc/f/config-lang.in +++ b/gnu/usr.bin/gcc/f/config-lang.in @@ -1,5 +1,5 @@ # Top level configure fragment for GNU FORTRAN. -# Copyright (C) 1995 Free Software Foundation, Inc. +# Copyright (C) 1995-1997 Free Software Foundation, Inc. #This file is part of GNU Fortran. @@ -62,8 +62,9 @@ diff_excludes="-x \"f/g77.info*\"" # Create the runtime library directory tree if necessary. test -d f || mkdir f test -d f/runtime || mkdir f/runtime -test -d f/runtime/libI77 || mkdir f/runtime/libI77 test -d f/runtime/libF77 || mkdir f/runtime/libF77 +test -d f/runtime/libI77 || mkdir f/runtime/libI77 +test -d f/runtime/libU77 || mkdir f/runtime/libU77 # Need to make top-level stageN directory trees, else if needed # later by gcc/Makefile, it'll make only the first levels and @@ -75,17 +76,19 @@ do test -d $stageN/f/runtime || mkdir $stageN/f/runtime test -d $stageN/f/runtime/libF77 || mkdir $stageN/f/runtime/libF77 test -d $stageN/f/runtime/libI77 || mkdir $stageN/f/runtime/libI77 + test -d $stageN/f/runtime/libU77 || mkdir $stageN/f/runtime/libU77 done # Make links into top-level stageN from target trees. for stageN in stage1 stage2 stage3 stage4 include do $remove -f f/$stageN f/runtime/$stageN f/runtime/libF77/$stageN \ - f/runtime/libI77/$stageN + f/runtime/libI77/$stageN f/runtime/libU77/$stageN (cd f; $symbolic_link ../$stageN . 2>/dev/null) (cd f/runtime; $symbolic_link ../$stageN . 2>/dev/null) (cd f/runtime/libF77; $symbolic_link ../$stageN . 2>/dev/null) (cd f/runtime/libI77; $symbolic_link ../$stageN . 2>/dev/null) + (cd f/runtime/libU77; $symbolic_link ../$stageN . 2>/dev/null) done case "$srcdir" in |