Author: sebor Date: Mon Jun 11 18:00:56 2007 New Revision: 546342 URL: http://svn.apache.org/viewvc?view=rev&rev=546342 Log: 2007-06-11 Martin Sebor * GNUmakefile.cfg (sane): Printed out the library version for which the config header is being generated. clean): Removed $(LOGFILE) from the list of files to remove by the target. Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg?view=diff&rev=546342&r1=546341&r2=546342 ============================================================================== --- incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg (original) +++ incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg Mon Jun 11 18:00:56 2007 @@ -278,7 +278,9 @@ # check compiler, linker, and run environment's sanity, determine # system (or compiler) architecture (word size, address size, etc.) sane: - @(echo; echo "configuring for $(CCNAME) on $(PLATFORM)"; echo; \ + @(echo; \ + echo "configuring stdcxx $(LIBVER) for $(CCNAME) on $(PLATFORM)"; \ + echo; \ rm -f a.out ; \ echo "int main () { return 0; }" | tee a.cpp >>$(LOGFILE) ; \ printf "%-50.50s " "checking if the compiler is sane"; \ @@ -306,7 +308,7 @@ clean: @rm -f a.out core *.o *.i *.ii *.ti vars.sh \ - *$(LIBSUFFIX) $(LOGFILE) $(TARGET) + *$(LIBSUFFIX) $(TARGET) realclean: clean rm -f *.d *.o *.a *.so a.cpp