New file from Ralf Corsepius

This commit is contained in:
Joel Sherrill
1998-05-21 16:46:24 +00:00
parent 941f6f3c5e
commit 6207ea2986

17
aclocal/tool-prefix.m4 Normal file
View File

@@ -0,0 +1,17 @@
dnl Set program_prefix
dnl
dnl 98/05/20 Ralf Corsepius (corsepiu@faw.uni-ulm.de)
dnl Extracted from configure
AC_DEFUN(RTEMS_TOOL_PREFIX,
[AC_REQUIRE([AC_CANONICAL_TARGET])dnl
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
if [[ "${program_prefix}" = "NONE" ]] ; then
if [[ "${target}" = "${host}" ]] ; then
program_prefix=
else
program_prefix=${target}-
fi
fi
])