EddyRivasLab / hmmer

HMMER: biological sequence analysis using profile HMMs
http://hmmer.org
Other
317 stars 70 forks source link

distclean modification for config.log and config.status files #212

Closed nawrockie closed 3 years ago

nawrockie commented 3 years ago

A minor tweak for Infernal:

Infernal's 'make distclean' calls 'make distclean' in its hmmer subdir. If configure hasn't been called in hmmer's subdir yet, then 'config.log' and 'config.status' won't exist, and a flagless 'rm' call on 'config.log' and 'config.status' will fail and exit in an error. I think the error is ignored but the distclean output still reports an error which is not ideal. This PR adds '-f' to the 'rm' call, making it mirror the analogous situation in easel's distclean commands.

I don't think this is important enough to worry about in infernal 1.1.4 which will include hmmer 3.3.2.

cryptogenomicon commented 3 years ago

Thanks!