* Get rid of empty AUTHORS file
@ 2008-10-19 0:48 Jan Engelhardt
[not found] ` <alpine.LNX.1.10.0810182047070.17929-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Jan Engelhardt @ 2008-10-19 0:48 UTC (permalink / raw)
To: linux-nfs
Hi,
the AUTHORS file reads:
This is a dummy AUTHORS file to make automake happy.
You can make automake happy in an IMO better way:
AUTOMAKE_OPTIONS = foreign
at the top of the toplevel Makefile.am.
(I usually also prefer "AUTOMAKE_OPTIONS = subdir-objs" next to
foreign.)
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <alpine.LNX.1.10.0810182047070.17929-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org>]
* Re: Get rid of empty AUTHORS file [not found] ` <alpine.LNX.1.10.0810182047070.17929-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org> @ 2008-10-20 18:53 ` J. Bruce Fields 2008-10-20 19:41 ` Get rid of empty AUTHORS file (patch) Jan Engelhardt 0 siblings, 1 reply; 4+ messages in thread From: J. Bruce Fields @ 2008-10-20 18:53 UTC (permalink / raw) To: Jan Engelhardt; +Cc: linux-nfs On Sat, Oct 18, 2008 at 08:48:11PM -0400, Jan Engelhardt wrote: > the AUTHORS file reads: > > This is a dummy AUTHORS file to make automake happy. > > You can make automake happy in an IMO better way: > > AUTOMAKE_OPTIONS = foreign > > at the top of the toplevel Makefile.am. > (I usually also prefer "AUTOMAKE_OPTIONS = subdir-objs" next to > foreign.) The quickest way to get changes into nfs-utils these days is a patch sent to steved@redhat.com against git://linux-nfs.org/nfs-utils. --b. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Get rid of empty AUTHORS file (patch) 2008-10-20 18:53 ` J. Bruce Fields @ 2008-10-20 19:41 ` Jan Engelhardt [not found] ` <alpine.LNX.1.10.0810201541090.27240-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Jan Engelhardt @ 2008-10-20 19:41 UTC (permalink / raw) To: steved; +Cc: linux-nfs, bfields On Monday 2008-10-20 14:53, J. Bruce Fields wrote: >On Sat, Oct 18, 2008 at 08:48:11PM -0400, Jan Engelhardt wrote: >> the AUTHORS file reads: >> >> This is a dummy AUTHORS file to make automake happy. >> >> You can make automake happy in an IMO better way: >> >> AUTOMAKE_OPTIONS = foreign >> >> at the top of the toplevel Makefile.am. >> (I usually also prefer "AUTOMAKE_OPTIONS = subdir-objs" next to >> foreign.) > >The quickest way to get changes into nfs-utils these days is a patch >sent to steved@redhat.com against git://linux-nfs.org/nfs-utils. commit 81d1d9fbab29e45fbdb27a2e0df011f6cd00714a Author: Jan Engelhardt <jengelh-nopoi9nDyk+ELgA04lAiVw@public.gmane.org> Date: Mon Oct 20 15:40:27 2008 -0400 build: remove redundant AUTHORS file One can use the --foreign automake option to make it not enforce presence of an AUTHORS file. Signed-off-by: Jan Engelhardt <jengelh-nopoi9nDyk+ELgA04lAiVw@public.gmane.org> --- AUTHORS | 1 - Makefile.am | 2 ++ 2 files changed, 2 insertions(+), 1 deletions(-) delete mode 100644 AUTHORS mode change 100644 => 100755 autogen.sh diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 9205d1e..0000000 --- a/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -This is a dummy AUTHORS file to make automake happy. diff --git a/Makefile.am b/Makefile.am index ec8e832..88ae210 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,7 @@ ## Process this file with automake to produce Makefile.in +AUTOMAKE_OPTIONS = foreign + SUBDIRS = tools support utils linux-nfs MAINTAINERCLEANFILES = Makefile.in diff --git a/autogen.sh b/autogen.sh old mode 100644 new mode 100755 ^ permalink raw reply related [flat|nested] 4+ messages in thread
[parent not found: <alpine.LNX.1.10.0810201541090.27240-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org>]
* Re: Get rid of empty AUTHORS file (patch) [not found] ` <alpine.LNX.1.10.0810201541090.27240-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org> @ 2008-10-21 13:34 ` Steve Dickson 0 siblings, 0 replies; 4+ messages in thread From: Steve Dickson @ 2008-10-21 13:34 UTC (permalink / raw) To: Jan Engelhardt; +Cc: linux-nfs, bfields Jan Engelhardt wrote: > commit 81d1d9fbab29e45fbdb27a2e0df011f6cd00714a > Author: Jan Engelhardt <jengelh-nopoi9nDyk+ELgA04lAiVw@public.gmane.org> > Date: Mon Oct 20 15:40:27 2008 -0400 > > build: remove redundant AUTHORS file > > One can use the --foreign automake option to make it not enforce > presence of an AUTHORS file. > > Signed-off-by: Jan Engelhardt <jengelh-nopoi9nDyk+ELgA04lAiVw@public.gmane.org> Committed... steved. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-10-21 13:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-19 0:48 Get rid of empty AUTHORS file Jan Engelhardt
[not found] ` <alpine.LNX.1.10.0810182047070.17929-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org>
2008-10-20 18:53 ` J. Bruce Fields
2008-10-20 19:41 ` Get rid of empty AUTHORS file (patch) Jan Engelhardt
[not found] ` <alpine.LNX.1.10.0810201541090.27240-vVwEwcwQeYFPkBl3ERsXe1l1cybopEuJUBSOeVevoDU@public.gmane.org>
2008-10-21 13:34 ` Steve Dickson
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.