All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] INSTALL: remove TODO section
@ 2020-05-29 13:53 Olaf Hering
  2020-06-02  8:43 ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Olaf Hering @ 2020-05-29 13:53 UTC (permalink / raw)
  To: xen-devel
  Cc: Olaf Hering, Stefano Stabellini, Julien Grall, Wei Liu,
	Andrew Cooper, Ian Jackson, George Dunlap, Jan Beulich

The default value '/' for DESTDIR is unusual, but does probably not hurt.

Fixes commit f2b40dababedcd8355bf3e85d00baf17f9827131
Fixes commit 8e986e5a61efeca92b9b268e77957d45d8316ee4

Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
 INSTALL | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/INSTALL b/INSTALL
index 72dc4b67dd..0d3eb89f02 100644
--- a/INSTALL
+++ b/INSTALL
@@ -365,12 +365,5 @@ make XEN_TARGET_ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
         DESTDIR=/some/path install
 
 
-TODO
-====
-
- - DESTDIR should be empty, not "/"
- - add make uninstall targets
- - replace private path variables as needed (SBINDIR/sbindir)
- - ...
 
 # vim: tw=72 et


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v1] INSTALL: remove TODO section
  2020-05-29 13:53 [PATCH v1] INSTALL: remove TODO section Olaf Hering
@ 2020-06-02  8:43 ` Wei Liu
  2020-06-02  9:08   ` Paul Durrant
  0 siblings, 1 reply; 3+ messages in thread
From: Wei Liu @ 2020-06-02  8:43 UTC (permalink / raw)
  To: Olaf Hering
  Cc: Stefano Stabellini, Julien Grall, Wei Liu, Paul Durrant,
	Andrew Cooper, Ian Jackson, George Dunlap, Jan Beulich, xen-devel

On Fri, May 29, 2020 at 03:53:03PM +0200, Olaf Hering wrote:
> The default value '/' for DESTDIR is unusual, but does probably not hurt.
> 
> Fixes commit f2b40dababedcd8355bf3e85d00baf17f9827131
> Fixes commit 8e986e5a61efeca92b9b268e77957d45d8316ee4
> 
> Signed-off-by: Olaf Hering <olaf@aepfle.de>

Acked-by: Wei Liu <wl@xen.org>

Based on the fact that you're the original author of this documentation.
:-)

Cc Paul.

> ---
>  INSTALL | 7 -------
>  1 file changed, 7 deletions(-)
> 
> diff --git a/INSTALL b/INSTALL
> index 72dc4b67dd..0d3eb89f02 100644
> --- a/INSTALL
> +++ b/INSTALL
> @@ -365,12 +365,5 @@ make XEN_TARGET_ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
>          DESTDIR=/some/path install
>  
>  
> -TODO
> -====
> -
> - - DESTDIR should be empty, not "/"
> - - add make uninstall targets
> - - replace private path variables as needed (SBINDIR/sbindir)
> - - ...
>  
>  # vim: tw=72 et


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH v1] INSTALL: remove TODO section
  2020-06-02  8:43 ` Wei Liu
@ 2020-06-02  9:08   ` Paul Durrant
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Durrant @ 2020-06-02  9:08 UTC (permalink / raw)
  To: 'Wei Liu', 'Olaf Hering'
  Cc: 'Stefano Stabellini', 'Julien Grall',
	'Andrew Cooper', 'Ian Jackson',
	'George Dunlap', 'Jan Beulich', xen-devel

> -----Original Message-----
> From: Wei Liu <wl@xen.org>
> Sent: 02 June 2020 09:44
> To: Olaf Hering <olaf@aepfle.de>
> Cc: xen-devel@lists.xenproject.org; Andrew Cooper <andrew.cooper3@citrix.com>; George Dunlap
> <george.dunlap@citrix.com>; Ian Jackson <ian.jackson@eu.citrix.com>; Jan Beulich <jbeulich@suse.com>;
> Julien Grall <julien@xen.org>; Stefano Stabellini <sstabellini@kernel.org>; Wei Liu <wl@xen.org>; Paul
> Durrant <paul@xen.org>
> Subject: Re: [PATCH v1] INSTALL: remove TODO section
> 
> On Fri, May 29, 2020 at 03:53:03PM +0200, Olaf Hering wrote:
> > The default value '/' for DESTDIR is unusual, but does probably not hurt.
> >
> > Fixes commit f2b40dababedcd8355bf3e85d00baf17f9827131
> > Fixes commit 8e986e5a61efeca92b9b268e77957d45d8316ee4
> >
> > Signed-off-by: Olaf Hering <olaf@aepfle.de>
> 
> Acked-by: Wei Liu <wl@xen.org>
> 
> Based on the fact that you're the original author of this documentation.
> :-)
> 
> Cc Paul.

Release-acked-by: Paul Durrant <paul@xen.org>

> 
> > ---
> >  INSTALL | 7 -------
> >  1 file changed, 7 deletions(-)
> >
> > diff --git a/INSTALL b/INSTALL
> > index 72dc4b67dd..0d3eb89f02 100644
> > --- a/INSTALL
> > +++ b/INSTALL
> > @@ -365,12 +365,5 @@ make XEN_TARGET_ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- \
> >          DESTDIR=/some/path install
> >
> >
> > -TODO
> > -====
> > -
> > - - DESTDIR should be empty, not "/"
> > - - add make uninstall targets
> > - - replace private path variables as needed (SBINDIR/sbindir)
> > - - ...
> >
> >  # vim: tw=72 et



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-06-02  9:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-29 13:53 [PATCH v1] INSTALL: remove TODO section Olaf Hering
2020-06-02  8:43 ` Wei Liu
2020-06-02  9:08   ` Paul Durrant

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.