diff options
author | Peter Powell <petpow@saberuk.com> | 2016-03-25 11:44:51 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2016-03-25 12:33:30 +0000 |
commit | eced5062205cb9c2ae4af5ca0972340059ae3363 (patch) | |
tree | 5456dbc199c66d4b8bf2b07f5a459fe3e98e68c6 | |
parent | ba0649304a73f7a5109af9a97a0ecbe3f4bbed36 (diff) |
Delete modules cautiously when doing a deinstall.
-rw-r--r-- | make/template/main.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index 2a220f5a8..08787a1bf 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -267,7 +267,8 @@ clean: deinstall: -rm -f $(BINPATH)/inspircd -rm -rf $(CONPATH)/examples - -rm -f $(MODPATH)/*.so + -rm -f $(MODPATH)/cmd_*.so + -rm -f $(MODPATH)/m_*.so -rm -f $(BASE)/.gdbargs -rm -f $(BASE)/org.inspircd.plist |