Sunday, July 28, 2019

While running (configure) rm: cannot remove `libtoolT'

Issue: while running (configure) rm: cannot remove `libtoolT'

Solution:   

Edit your configure file

Change the line

$RM "$cfgfile"

to

$RM -f "$cfgfile"

This will resolve the error

rm: cannot remove `libtoolT': No such file or directory

Then try run configure.

No comments:

Post a Comment