Commit 976201ba authored by korbb's avatar korbb
Browse files

default the build machine triplet, if it is not provided

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37979 138bc75d-0d04-0410-961f-82ee72b054a4
parent 72f26d48
2000-12-03 Bruce Korb <bkorb@gcc.org>
* fixinc/mkfixinc.sh(build machine): Sometimes, there is no canonical
build machine name. Default to the target.
2000-12-03 Laurynas Biveinis <lauras@softhome.net>
* Makefile.in: use $(build_canonical), not $(canonical_build).
......
......@@ -5,14 +5,16 @@ machine=$2
if [ -z "$build" ]
then
echo No build system name given
exit 1
echo No target system name given
exit 1
fi
# If we don't get two arguments, then assume both arguments
# are the same
#
if [ -z "$machine" ]
then
echo No machine name given
exit 1
machine="$build"
fi
target=../fixinc.sh
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment