public inbox for util-linux@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] build-sys: add files to distribution
@ 2013-01-09 22:44 Sami Kerola
  2013-01-09 22:44 ` [PATCH 2/3] build-sys: ignore chkdupexe Sami Kerola
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Sami Kerola @ 2013-01-09 22:44 UTC (permalink / raw)
  To: util-linux; +Cc: kerolasa

To fix 'make distcheck' compilation.  The fdisks/Makemodule.am has one
new entry 'dos_part_types.h', the rest is about sorting the list.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
 fdisks/Makemodule.am  | 7 ++++---
 include/Makemodule.am | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/fdisks/Makemodule.am b/fdisks/Makemodule.am
index 0723f50..e03ccbe 100644
--- a/fdisks/Makemodule.am
+++ b/fdisks/Makemodule.am
@@ -4,24 +4,25 @@ if !ARCH_M68K
 sbin_PROGRAMS += fdisk
 dist_man_MANS += fdisks/fdisk.8
 fdisk_SOURCES = \
-	fdisks/utils.c \
+	fdisks/dos_part_types.h \
 	fdisks/fdisk.c \
 	fdisks/fdisk.h \
 	fdisks/fdiskaixlabel.c \
 	fdisks/fdiskaixlabel.h \
 	fdisks/fdiskbsdlabel.c \
 	fdisks/fdiskbsdlabel.h \
+	fdisks/fdiskdoslabel.c \
+	fdisks/fdiskdoslabel.h \
 	fdisks/fdiskmaclabel.c \
 	fdisks/fdiskmaclabel.h \
 	fdisks/fdisksgilabel.c \
 	fdisks/fdisksgilabel.h \
 	fdisks/fdisksunlabel.c \
 	fdisks/fdisksunlabel.h \
-	fdisks/fdiskdoslabel.c \
-	fdisks/fdiskdoslabel.h \
 	fdisks/gpt.c \
 	fdisks/gpt.h \
 	fdisks/partname.c \
+	fdisks/utils.c \
 	fdisks/common.h
 
 fdisk_LDADD = $(LDADD) libcommon.la
diff --git a/include/Makemodule.am b/include/Makemodule.am
index bef118f..5538570 100644
--- a/include/Makemodule.am
+++ b/include/Makemodule.am
@@ -8,6 +8,7 @@ dist_noinst_HEADERS += \
 	include/canonicalize.h \
 	include/carefulputc.h \
 	include/closestream.h \
+	include/colors.h \
 	include/cpuset.h \
 	include/crc32.h \
 	include/env.h \
-- 
1.8.1


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

* [PATCH 2/3] build-sys: ignore chkdupexe
  2013-01-09 22:44 [PATCH 1/3] build-sys: add files to distribution Sami Kerola
@ 2013-01-09 22:44 ` Sami Kerola
  2013-01-10 10:46   ` Karel Zak
  2013-01-09 22:44 ` [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds Sami Kerola
  2013-01-10 10:46 ` [PATCH 1/3] build-sys: add files to distribution Karel Zak
  2 siblings, 1 reply; 7+ messages in thread
From: Sami Kerola @ 2013-01-09 22:44 UTC (permalink / raw)
  To: util-linux; +Cc: kerolasa

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
 misc-utils/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/misc-utils/.gitignore b/misc-utils/.gitignore
index db148ba..c3b9a8b 100644
--- a/misc-utils/.gitignore
+++ b/misc-utils/.gitignore
@@ -2,3 +2,4 @@ uuidd.8
 uuidd.rc
 uuidd.service
 uuidd.socket
+/chkdupexe
-- 
1.8.1


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

* [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds
  2013-01-09 22:44 [PATCH 1/3] build-sys: add files to distribution Sami Kerola
  2013-01-09 22:44 ` [PATCH 2/3] build-sys: ignore chkdupexe Sami Kerola
@ 2013-01-09 22:44 ` Sami Kerola
  2013-01-09 22:47   ` Dave Reisner
  2013-01-10 10:46 ` [PATCH 1/3] build-sys: add files to distribution Karel Zak
  2 siblings, 1 reply; 7+ messages in thread
From: Sami Kerola @ 2013-01-09 22:44 UTC (permalink / raw)
  To: util-linux; +Cc: kerolasa

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
 configure.ac | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 16255b1..e937736 100644
--- a/configure.ac
+++ b/configure.ac
@@ -673,15 +673,17 @@ AC_ARG_ENABLE([most-builds],
 )
 if test "x$enable_most_builds" = xyes; then
   enable_arch=check
+  enable_chfn_chsh=yes
+  enable_chkdupexe=yes
   enable_elvtune=check
-  enable_tunelp=yes
   enable_last=yes
   enable_line=yes
   enable_mesg=yes
+  enable_newgrp=yes
   enable_reset=yes
+  enable_socket_activation=yes
+  enable_tunelp=yes
   enable_vipw=yes
-  enable_chfn_chsh=yes
-  enable_newgrp=yes
   enable_write=yes
 fi
 
-- 
1.8.1


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

* Re: [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds
  2013-01-09 22:44 ` [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds Sami Kerola
@ 2013-01-09 22:47   ` Dave Reisner
  2013-01-10 10:48     ` Karel Zak
  0 siblings, 1 reply; 7+ messages in thread
From: Dave Reisner @ 2013-01-09 22:47 UTC (permalink / raw)
  To: Sami Kerola; +Cc: util-linux

On Wed, Jan 09, 2013 at 10:44:06PM +0000, Sami Kerola wrote:
> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
> ---

chkdupexe was marked as deprecated and turned off by default in
4581bd9c6797ea3b75. Maybe generalize the commit message as well, since
this does a lot more than just enable the 2 builds it claims.

>  configure.ac | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/configure.ac b/configure.ac
> index 16255b1..e937736 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -673,15 +673,17 @@ AC_ARG_ENABLE([most-builds],
>  )
>  if test "x$enable_most_builds" = xyes; then
>    enable_arch=check
> +  enable_chfn_chsh=yes
> +  enable_chkdupexe=yes
>    enable_elvtune=check
> -  enable_tunelp=yes
>    enable_last=yes
>    enable_line=yes
>    enable_mesg=yes
> +  enable_newgrp=yes
>    enable_reset=yes
> +  enable_socket_activation=yes
> +  enable_tunelp=yes
>    enable_vipw=yes
> -  enable_chfn_chsh=yes
> -  enable_newgrp=yes
>    enable_write=yes
>  fi
>  
> -- 
> 1.8.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe util-linux" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/3] build-sys: add files to distribution
  2013-01-09 22:44 [PATCH 1/3] build-sys: add files to distribution Sami Kerola
  2013-01-09 22:44 ` [PATCH 2/3] build-sys: ignore chkdupexe Sami Kerola
  2013-01-09 22:44 ` [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds Sami Kerola
@ 2013-01-10 10:46 ` Karel Zak
  2 siblings, 0 replies; 7+ messages in thread
From: Karel Zak @ 2013-01-10 10:46 UTC (permalink / raw)
  To: Sami Kerola; +Cc: util-linux

On Wed, Jan 09, 2013 at 10:44:04PM +0000, Sami Kerola wrote:
>  fdisks/Makemodule.am  | 7 ++++---
>  include/Makemodule.am | 1 +
>  2 files changed, 5 insertions(+), 3 deletions(-)

Applied, thanks.

> +	include/colors.h \

 BTW, any idea where we can use colors?

    Karel

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

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

* Re: [PATCH 2/3] build-sys: ignore chkdupexe
  2013-01-09 22:44 ` [PATCH 2/3] build-sys: ignore chkdupexe Sami Kerola
@ 2013-01-10 10:46   ` Karel Zak
  0 siblings, 0 replies; 7+ messages in thread
From: Karel Zak @ 2013-01-10 10:46 UTC (permalink / raw)
  To: Sami Kerola; +Cc: util-linux

On Wed, Jan 09, 2013 at 10:44:05PM +0000, Sami Kerola wrote:
>  misc-utils/.gitignore | 1 +
>  1 file changed, 1 insertion(+)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

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

* Re: [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds
  2013-01-09 22:47   ` Dave Reisner
@ 2013-01-10 10:48     ` Karel Zak
  0 siblings, 0 replies; 7+ messages in thread
From: Karel Zak @ 2013-01-10 10:48 UTC (permalink / raw)
  To: Sami Kerola, util-linux

On Wed, Jan 09, 2013 at 05:47:15PM -0500, Dave Reisner wrote:
> On Wed, Jan 09, 2013 at 10:44:06PM +0000, Sami Kerola wrote:
> > Signed-off-by: Sami Kerola <kerolasa@iki.fi>
> > ---
> 
> chkdupexe was marked as deprecated and turned off by default in

 --enable-most-builds is just about utils which are not enabled by
 default :-)

> 4581bd9c6797ea3b75. Maybe generalize the commit message as well, since
> this does a lot more than just enable the 2 builds it claims.

 fixed

> >  configure.ac | 8 +++++---
> >  1 file changed, 5 insertions(+), 3 deletions(-)

 Applied, thanks.

    Karel

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

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

end of thread, other threads:[~2013-01-10 10:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-09 22:44 [PATCH 1/3] build-sys: add files to distribution Sami Kerola
2013-01-09 22:44 ` [PATCH 2/3] build-sys: ignore chkdupexe Sami Kerola
2013-01-10 10:46   ` Karel Zak
2013-01-09 22:44 ` [PATCH 3/3] build-sys: add chkdupexe and uuidd socket activation to most-builds Sami Kerola
2013-01-09 22:47   ` Dave Reisner
2013-01-10 10:48     ` Karel Zak
2013-01-10 10:46 ` [PATCH 1/3] build-sys: add files to distribution Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox