uninstall fails to remove examples directory
Open
bug
component1
- Dominant language
- Shell
- Stars
- 21
- Forks
- 12
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.