This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

V3 PATCH: mkcheck.in buglet



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="-"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]