This is the mail archive of the
libstdc++@sources.redhat.com
mailing list for the libstdc++ project.
V3 PATCH: mkcheck.in buglet
- To: gcc-patches at gcc dot gnu dot org
- Subject: V3 PATCH: mkcheck.in buglet
- From: Mark P Mitchell <mark at codesourcery dot com>
- Date: Thu, 2 Nov 2000 19:30:36 -0700 (MST)
- Cc: libstdc++ at sources dot redhat dot com
- Reply-to: mark at codesourcery dot com
I changed mkcheck.in to use -rpath instead of --rpath -- but I didn't
change it to to echo the command correctly to the log file.
--
Mark Mitchell mark@codesourcery.com
CodeSourcery, LLC http://www.codesourcery.com
Thu Nov 2 10:11:45 2000 Mark P Mitchell <mark@codesourcery.com>
* mkcheck.in: Fix echoing of -rpath option.
Index: mkcheck.in
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/mkcheck.in,v
retrieving revision 1.30
diff -c -p -r1.30 mkcheck.in
*** mkcheck.in 2000/10/31 01:26:05 1.30
--- mkcheck.in 2000/11/03 02:22:28
*************** test_file()
*** 307,313 ****
fi
else
# the file did not compile. Write out compilation info to the log file.
! echo "$CXX $CXX_FLAG $S_FLAG $INC_PATH -L$LIB_PATH -Wl,--rpath -Wl,$LIB_PATH \
$SRC_NAME -o $EXENAME" 2>> $LOG_FILE
RESULT="-"
--- 307,313 ----
fi
else
# the file did not compile. Write out compilation info to the log file.
! echo "$CXX $CXX_FLAG $S_FLAG $INC_PATH -L$LIB_PATH -Wl,-rpath -Wl,$LIB_PATH \
$SRC_NAME -o $EXENAME" 2>> $LOG_FILE
RESULT="-"