1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 01:03:14 +02:00

core: fix installation of weechat-plugin.h with autotools (patch #8305)

This commit is contained in:
Patrick Steinhardt
2014-02-04 22:18:12 +01:00
committed by Sebastien Helleu
parent a3b5ae5e65
commit 47ced4833d
3 changed files with 5 additions and 3 deletions
+3 -3
View File
@@ -113,10 +113,10 @@ EXTRA_DIST = CMakeLists.txt
# install plugin header
install-data-hook:
$(INSTALL) -d $(includedir)/$(PACKAGE)
$(INSTALL_DATA) $(abs_top_srcdir)/src/plugins/weechat-plugin.h $(includedir)/$(PACKAGE)
$(INSTALL) -d $(DESTDIR)/$(includedir)/$(PACKAGE)
$(INSTALL_DATA) $(abs_top_srcdir)/src/plugins/weechat-plugin.h $(DESTDIR)/$(includedir)/$(PACKAGE)
# uninstall plugin header
uninstall-hook:
$(RM) $(includedir)/$(PACKAGE)/weechat-plugin.h
$(RM) $(DESTDIR)/$(includedir)/$(PACKAGE)/weechat-plugin.h