summaryrefslogtreecommitdiff
path: root/editors/xemacs-current
diff options
context:
space:
mode:
authorhauke <hauke@pkgsrc.org>2017-11-15 14:59:55 +0000
committerhauke <hauke@pkgsrc.org>2017-11-15 14:59:55 +0000
commit8c768f0c2ddd6b7f290259fd7fe51f421adf5f86 (patch)
treed540e424673f06301c815548045cb06459be9548 /editors/xemacs-current
parentaf206bfd85bfbad6c7e4863510e9a02086518d0e (diff)
downloadpkgsrc-8c768f0c2ddd6b7f290259fd7fe51f421adf5f86.tar.gz
Upgrade to XEmacs 21.5.34
Deal with a difference between bmake and gmake in using $< in a makefile target Was patch-al
Diffstat (limited to 'editors/xemacs-current')
-rw-r--r--editors/xemacs-current/patches/patch-al13
-rw-r--r--editors/xemacs-current/patches/patch-modules_common_Makefile.common18
2 files changed, 18 insertions, 13 deletions
diff --git a/editors/xemacs-current/patches/patch-al b/editors/xemacs-current/patches/patch-al
deleted file mode 100644
index 43e930934d0..00000000000
--- a/editors/xemacs-current/patches/patch-al
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-al,v 1.1 2008/04/24 21:32:47 jlam Exp $
-
---- modules/common/Makefile.common.orig 2005-11-22 02:14:54.000000000 -0500
-+++ modules/common/Makefile.common
-@@ -98,7 +98,7 @@ extraclean: realclean
- -$(RM) *~ \#*
-
- install: $(OBJECT_TO_BUILD)
-- $(INSTALL_PROGRAM) $< $(INSTALLPATH)
-+ $(INSTALL_PROGRAM) $(OBJECT_TO_BUILD) $(INSTALLPATH)
-
- ##
- ## Local Variables:
diff --git a/editors/xemacs-current/patches/patch-modules_common_Makefile.common b/editors/xemacs-current/patches/patch-modules_common_Makefile.common
new file mode 100644
index 00000000000..b1bc4e47579
--- /dev/null
+++ b/editors/xemacs-current/patches/patch-modules_common_Makefile.common
@@ -0,0 +1,18 @@
+$NetBSD: patch-modules_common_Makefile.common,v 1.1 2017/11/15 14:59:55 hauke Exp $
+
+Deal with a difference between bmake and gmake in using $< in a
+makefile target
+
+Was patch-al
+
+--- modules/common/Makefile.common.orig 2013-08-21 17:43:44.000000000 +0000
++++ modules/common/Makefile.common
+@@ -98,7 +98,7 @@ extraclean: realclean
+ -$(RM) *~ \#*
+
+ install: $(OBJECT_TO_BUILD)
+- $(INSTALL_PROGRAM) $< $(DESTDIR)$(INSTALLPATH)
++ $(INSTALL_PROGRAM) $(OBJECT_TO_BUILD) $(DESTDIR)$(INSTALLPATH)
+
+ ##
+ ## Local Variables: