mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
bb2e6e9dcd
since the commit broke dependencies and the ports infrastructure was not fully prepared (a new emacs/editors22 port is needed for compatibility reasons); . bump PORTEPOCH. Reported by: Jan Henrik Sylvester <me at janh.de>, kostik Pointy hat to: bsam (me)
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
--- lispref/Makefile.in.orig 2008-09-07 05:24:57.000000000 +0300
|
|
+++ lispref/Makefile.in 2008-09-07 05:24:57.000000000 +0300
|
|
@@ -33,7 +33,7 @@
|
|
TEXI2DVI = texi2dvi
|
|
SHELL = /bin/sh
|
|
INSTALL_INFO = install-info
|
|
-MAKEINFO = makeinfo --force
|
|
+MAKEINFO = makeinfo --force --no-split
|
|
|
|
# The name of the manual:
|
|
VERSION=2.9
|
|
@@ -110,7 +110,7 @@
|
|
# This is for use in a separate distro of the Emacs Lisp manual.
|
|
install: elisp
|
|
$(srcdir)/mkinstalldirs $(infodir)
|
|
- cp elisp elisp-[1-9] elisp-[1-9][0-9] $(infodir)
|
|
+ cp elisp $(infodir)
|
|
${INSTALL_INFO} --info-dir=${infodir} ${infodir}/elisp
|
|
|
|
# This is for use in a separate distro of the Emacs Lisp manual.
|
|
@@ -126,7 +126,7 @@
|
|
|
|
maintainer-clean: clean
|
|
rm -f elisp.dvi elisp.oaux
|
|
- cd $(infodir); rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
|
|
+ cd $(infodir); rm -f elisp
|
|
|
|
dist: $(infodir)/elisp elisp.dvi
|
|
-rm -rf temp
|
|
@@ -136,7 +136,7 @@
|
|
$(srcdir)/Makefile.in $(srcs) \
|
|
$(srcdir)/../man/texinfo.tex \
|
|
elisp.dvi elisp.aux elisp.??s \
|
|
- $(infodir)/elisp $(infodir)/elisp-[1-9] $(infodir)/elisp-[1-9][0-9] \
|
|
+ $(infodir)/elisp \
|
|
temp/$(manual)
|
|
-(cd temp/$(manual); rm -f mkinstalldirs)
|
|
cp $(srcdir)/mkinstalldirs temp/$(manual)
|