diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2022-04-30 17:14:05 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2022-04-30 17:14:05 +0200 |
commit | 5ec13a947a1d74c471f1c95e1340559594f500cb (patch) | |
tree | 427c2e2b414210e9f1b6c62f968beb79643526e2 | |
parent | 0.0.3 (diff) | |
download | ircxmpp-0.0.4.tar ircxmpp-0.0.4.tar.gz ircxmpp-0.0.4.tar.bz2 ircxmpp-0.0.4.tar.lz ircxmpp-0.0.4.tar.xz ircxmpp-0.0.4.tar.zst ircxmpp-0.0.4.zip |
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +ircxmpp (0.0.4-1) stable; urgency=low + + * Minor change from previous release, as it did not build + + -- Anton Luka Šijanec <anton@sijanec.eu> Sat, 30 Apr 2022 17:15:00 +0200 + ircxmpp (0.0.3-1) stable; urgency=low * Fixed newline message smuggling from XMPP to IRC. @@ -20,10 +20,10 @@ install: distclean: clean clean: - rm $(PROJ) $(PROJ).o lib$(PROJ).so + rm -f $(PROJ) $(PROJ).o lib$(PROJ).so uninstall: - rm $(DESTDIR)/usr/bin/$(PROJ) $(DESTDIR)/etc/$(PROJ) $(DESTDIR)/usr/include/$(PROJ).h $(DESTDIR)/usr/lib/lib$(PROJ).so + rm -f $(DESTDIR)/usr/bin/$(PROJ) $(DESTDIR)/etc/$(PROJ) $(DESTDIR)/usr/include/$(PROJ).h $(DESTDIR)/usr/lib/lib$(PROJ).so valgrind: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt $(COMMAND) |