1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/print/a2ps-letter/files/patch-contrib-emacs-Makefile.in
Dirk Meyer e7f6e61c38 - Fix BROKEN install of emacs files
- Fix PLIST
- no response from MAINTAINER since 2003-04-04
2003-04-11 17:25:03 +00:00

23 lines
718 B
Plaintext

--- contrib/emacs/Makefile.in.orig Thu Feb 24 19:01:08 2000
+++ contrib/emacs/Makefile.in Fri Apr 4 20:41:55 2003
@@ -159,7 +159,8 @@
install-dist_lispLISP: $(dist_lisp_LISP) $(ELCFILES)
@$(NORMAL_INSTALL)
- $(mkinstalldirs) $(DESTDIR)$(lispdir)
+ if test $(EMACS) != no; then \
+ $(mkinstalldirs) $(DESTDIR)$(lispdir) \
@list='$(dist_lisp_LISP)'; for p in $$list; do \
if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
f="`echo $$p | sed -e 's|^.*/||'`"; \
@@ -169,7 +170,8 @@
echo " $(INSTALL_DATA) $${p}c $(DESTDIR)$(lispdir)/$${f}c"; \
$(INSTALL_DATA) $${p}c $(DESTDIR)$(lispdir)/$${f}c; \
else : ; fi; \
- done
+ done \
+ fi
uninstall-dist_lispLISP:
@$(NORMAL_UNINSTALL)