From bf40ef7015804127e149012d6373b5297e780d2d Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Thu, 3 Jan 2013 03:03:30 +0000 Subject: [PATCH] Use INSTALL_DATA instead of INSTALL to install the BitchX.hints file. This means it's not made executable. Patch from Jeff Horelick . git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@222 13b04d17-f746-0410-82c6-800466cd88b0 --- Changelog | 3 +++ dll/hint/Makefile.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 8101958..76d6485 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,8 @@ [Changes 1.2c01] +* Applied patches from jdhore to clean up the plugin building + and installing process. (caf) + * Fix building on newer Cygwin (reported by VICODAN). (caf) * Fix building plugins on FreeBSD-10 (reported by cpet). (caf) diff --git a/dll/hint/Makefile.in b/dll/hint/Makefile.in index 83b4fd9..00d7059 100644 --- a/dll/hint/Makefile.in +++ b/dll/hint/Makefile.in @@ -173,4 +173,4 @@ distclean: clean install: $(INSTALL) $(PLUGIN_NAME)$(SHLIB_SUFFIX) $(DESTDIR)$(PLUGINDIR) - $(INSTALL) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@ + $(INSTALL_DATA) $(srcdir)/BitchX.hints $(DESTDIR)$(PLUGINDIR)/@HINT_FILE@