CoinMP icon indicating copy to clipboard operation
CoinMP copied to clipboard

uninstall fails to remove examples directory

Open svigerske opened this issue 6 years ago • 0 comments

Issue created by migration from Trac.

Original creator: @svigerske

Original creation time: 2009-03-26 18:45:41

Assignee: somebody

Version:

Hi,

make uninstall (for trunk) fails for me with

rm -f [...]/share/doc/coin/CoinMP/examples
rm: cannot remove `[...]/share/doc/coin/CoinMP/examples': Is a directory

I believe the line

        rm -f $(DESTDIR)$(examplesdir)

in CoinMP/Makefile.am should be changed into

        rmdir $(DESTDIR)$(examplesdir)

or

        rm -rf $(DESTDIR)$(examplesdir)

Best, Stefan

svigerske avatar Mar 04 '19 02:03 svigerske