Make-lang.in (f77.stage?): Use mv -f instead of just mv so that we can move g77.c.
8 * Make-lang.in (f77.stage?): Use mv -f instead of just mv so that we can move g77.c. From-SVN: r20958
This commit is contained in:
parent
b368c5716c
commit
57668aa6aa
1 changed files with 4 additions and 4 deletions
|
@ -426,19 +426,19 @@ G77STAGESTUFF = f/*$(objext) f/fini f/stamp-str f/str-*.h f/str-*.j \
|
|||
|
||||
f77.stage1: stage1-start
|
||||
-if [ -f lang-f77 ]; then \
|
||||
mv $(G77STAGESTUFF) stage1/f; \
|
||||
mv -f $(G77STAGESTUFF) stage1/f; \
|
||||
fi
|
||||
f77.stage2: stage2-start
|
||||
-if [ -f lang-f77 ]; then \
|
||||
mv $(G77STAGESTUFF) stage2/f; \
|
||||
mv -f $(G77STAGESTUFF) stage2/f; \
|
||||
fi
|
||||
f77.stage3: stage3-start
|
||||
-if [ -f lang-f77 ]; then \
|
||||
mv $(G77STAGESTUFF) stage3/f; \
|
||||
mv -f $(G77STAGESTUFF) stage3/f; \
|
||||
fi
|
||||
f77.stage4: stage4-start
|
||||
-if [ -f lang-f77 ]; then \
|
||||
mv $(G77STAGESTUFF) stage4/f; \
|
||||
mv -f $(G77STAGESTUFF) stage4/f; \
|
||||
fi
|
||||
#
|
||||
# Maintenance hooks:
|
||||
|
|
Loading…
Add table
Reference in a new issue