https://issues.apache.org/bugzilla/show_bug.cgi?id=51726
Eiji Takahashi <ei...@apache.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID OS/Version| |All --- Comment #1 from Eiji Takahashi <ei...@apache.org> 2011-09-13 00:55:33 UTC --- 'libtoolT' is created and removed by config.status. config.status removes previous 'libtoolT' prior to creating new file. If you create the configure script using buildconf.sh on your system, for example CentOS6, the generated script creates following script.(CentOS6 contains aclocal-1.11.1.) -----snippet of config.status 1487 1488 cfgfile="${ofile}T" 1489 trap "$RM \"$cfgfile\"; exit 1" 1 2 15 1490 $RM "$cfgfile" 1491 1492 cat <<_LT_EOF >> "$cfgfile" 1493 #! $SHELL 1494 --- You get the following message because the rm command has no option. rm: libtoolT: No such file or directory If you use aclocal-1.10, the configure script creates following script. ----- 1323 1324 cfgfile="${ofile}T" 1325 trap "$RM -f \"$cfgfile\"; exit 1" 1 2 15 1326 $RM -f "$cfgfile" 1327 1328 cat <<_LT_EOF >> "$cfgfile" 1329 #! $SHELL 1330 --- You don't get the above message because the rm command has the -f option. regards. Eiji -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org