emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Location of OpenDocument style files should be configurable


From: Jambunathan K
Subject: Re: [O] Location of OpenDocument style files should be configurable
Date: Fri, 24 Feb 2012 16:31:06 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.93 (windows-nt)

Ulrich

>> ps: Makefiles are beyond my jurisdiction. I will let Bastien act on
>> your patch(es).
>
> Looks like my earlier patch hasn't been applied for 7.8.03. :(

I have applied the patch below. This should be available in the next
release..

> Cheers,
> Ulrich
>
>
> From 274fc9a41d7e573bc67a85ffad046ca163dc6452 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Ulrich=20M=C3=BCller?= <address@hidden>
> Date: Mon, 2 Jan 2012 22:00:38 +0100
> Subject: [PATCH] Support DESTDIR in Makefile.
>
> ---
>  Makefile |   19 +++++++++++--------
>  1 files changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 642b21f..b6ad567 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -253,18 +253,21 @@ g:
>  lisp/org-odt.elc: BATCH_EXTRA = -eval "(setq org-odt-data-dir
> (expand-file-name \"$(datadir)\"))"
>  
>  install-lisp: $(LISPFILES) $(ELCFILES)
> -     if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ;
> -     $(CP) $(LISPFILES)  $(lispdir)
> -     $(CP) $(ELCFILES)   $(lispdir)
> +     if [ ! -d $(DESTDIR)$(lispdir) ]; then \
> +             $(MKDIR) $(DESTDIR)$(lispdir); else true; fi ;
> +     $(CP) $(LISPFILES)  $(DESTDIR)$(lispdir)
> +     $(CP) $(ELCFILES)   $(DESTDIR)$(lispdir)
>  
>  install-info: $(INFOFILES)
> -     if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ;
> -     $(CP) $(INFOFILES) $(infodir)
> -     $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES)
> +     if [ ! -d $(DESTDIR)$(infodir) ]; then \
> +             $(MKDIR) $(DESTDIR)$(infodir); else true; fi ;
> +     $(CP) $(INFOFILES) $(DESTDIR)$(infodir)
> +     $(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) $(INFOFILES)
>  
>  install-data: $(DATAFILES)
> -     if [ ! -d $(datadir) ]; then $(MKDIR) $(datadir); else true; fi ;
> -     $(CP) $(DATAFILES) $(datadir)
> +     if [ ! -d $(DESTDIR)$(datadir) ]; then \
> +             $(MKDIR) $(DESTDIR)$(datadir); else true; fi ;
> +     $(CP) $(DATAFILES) $(DESTDIR)$(datadir)
>  
>  autoloads: lisp/org-install.el



reply via email to

[Prev in Thread] Current Thread [Next in Thread]