This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Add DJGPP-specific binary paths to configure.in
- To: gcc-patches at gcc dot gnu dot org
- Subject: Add DJGPP-specific binary paths to configure.in
- From: "Laurynas Biveinis" <lauras at softhome dot net>
- Date: Fri, 9 Mar 2001 18:34:47 +0200
This trivial patch makes configure search djgpp paths when
looking for assembler to use.
OK for head and branch?
Laurynas
2001-03-09 Laurynas Biveinis <lauras@softhome.net>
* configure.in: Search /dev/env/DJDIR/bin and
/dev/env/DJDIR/$target/bin when looking for assembler to use.
* configure: Regenerated.
Index: gcc/gcc/configure.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/configure.in,v
retrieving revision 1.483.2.4
diff -c -p -r1.483.2.4 configure.in
*** configure.in 2001/03/08 06:12:07 1.483.2.4
--- configure.in 2001/03/09 16:22:42
*************** if test "x$gcc_cv_as" = x -a x$host = x$
*** 1176,1181 ****
--- 1176,1183 ----
/usr/lib/cmplrs/cc \
/sysv/usr/lib/cmplrs/cc \
/svr4/usr/lib/cmplrs/cc \
+ /dev/env/DJDIR/bin \
+ /dev/env/DJDIR/$target/bin \
/usr/bin"
for dir in $test_dirs; do