* [PATCH 1/1] fix build, replace GZIP with GZIPCMD
@ 2014-09-09 8:28 Christian Hesse
2014-09-10 8:24 ` Zdenek Kabelac
0 siblings, 1 reply; 2+ messages in thread
From: Christian Hesse @ 2014-09-09 8:28 UTC (permalink / raw)
To: christophe.varoqui; +Cc: Christian Hesse, dm-devel
Files are compressed by gzip. In Makefiles the variable GZIP is
used, this evaluates to 'gzip gzip' on my system.
From man gzip:
> The environment variable GZIP can hold a set of
> default options for gzip. These options are interpreted first and can
> be overwritten by explicit command line parameters.
So using any other variable name fixes this.
---
Makefile.inc | 2 +-
kpartx/Makefile | 2 +-
libmpathpersist/Makefile | 4 ++--
mpathpersist/Makefile | 2 +-
multipathd/Makefile | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Makefile.inc b/Makefile.inc
index 20ae23e..662b1a2 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -42,7 +42,7 @@ libdir = $(prefix)/$(LIB)/multipath
unitdir = $(prefix)/usr/lib/systemd/system
mpathpersistdir = $(TOPDIR)/libmpathpersist
-GZIP = gzip -9 -c
+GZIPCMD = gzip -9 -c
INSTALL_PROGRAM = install
ifndef RPM_OPT_FLAGS
diff --git a/kpartx/Makefile b/kpartx/Makefile
index 4ba38ba..d533c9e 100644
--- a/kpartx/Makefile
+++ b/kpartx/Makefile
@@ -21,7 +21,7 @@ all: $(EXEC)
$(EXEC): $(OBJS)
$(CC) $(OBJS) -o $(EXEC) $(LDFLAGS)
- $(GZIP) $(EXEC).8 > $(EXEC).8.gz
+ $(GZIPCMD) $(EXEC).8 > $(EXEC).8.gz
install: $(EXEC) $(EXEC).8
$(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir)
diff --git a/libmpathpersist/Makefile b/libmpathpersist/Makefile
index c4ec1c5..323465e 100644
--- a/libmpathpersist/Makefile
+++ b/libmpathpersist/Makefile
@@ -22,8 +22,8 @@ $(LIBS):
$(CC) -Wall -fPIC -c $(CFLAGS) *.c
$(CC) -shared $(LIBDEPS) -Wl,-soname=$@ $(CFLAGS) -o $@ $(OBJS)
ln -s $(LIBS) $(DEVLIB)
- $(GZIP) mpath_persistent_reserve_in.3 > mpath_persistent_reserve_in.3.gz
- $(GZIP) mpath_persistent_reserve_out.3 > mpath_persistent_reserve_out.3.gz
+ $(GZIPCMD) mpath_persistent_reserve_in.3 > mpath_persistent_reserve_in.3.gz
+ $(GZIPCMD) mpath_persistent_reserve_out.3 > mpath_persistent_reserve_out.3.gz
install: $(LIBS)
$(INSTALL_PROGRAM) -d $(DESTDIR)$(syslibdir)
diff --git a/mpathpersist/Makefile b/mpathpersist/Makefile
index ad8e607..0f4965f 100644
--- a/mpathpersist/Makefile
+++ b/mpathpersist/Makefile
@@ -13,7 +13,7 @@ all: $(EXEC)
$(EXEC): $(OBJS)
$(CC) -g $(OBJS) -o $(EXEC) $(LDFLAGS) $(CFLAGS)
- $(GZIP) $(EXEC).8 > $(EXEC).8.gz
+ $(GZIPCMD) $(EXEC).8 > $(EXEC).8.gz
install:
install -d $(DESTDIR)$(bindir)
diff --git a/multipathd/Makefile b/multipathd/Makefile
index 901d1e4..b405036 100644
--- a/multipathd/Makefile
+++ b/multipathd/Makefile
@@ -40,7 +40,7 @@ all : $(EXEC)
$(EXEC): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) -o $(EXEC)
- $(GZIP) $(EXEC).8 > $(EXEC).8.gz
+ $(GZIPCMD) $(EXEC).8 > $(EXEC).8.gz
install:
$(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir)
--
2.1.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] fix build, replace GZIP with GZIPCMD
2014-09-09 8:28 [PATCH 1/1] fix build, replace GZIP with GZIPCMD Christian Hesse
@ 2014-09-10 8:24 ` Zdenek Kabelac
0 siblings, 0 replies; 2+ messages in thread
From: Zdenek Kabelac @ 2014-09-10 8:24 UTC (permalink / raw)
To: device-mapper development, christophe.varoqui; +Cc: Christian Hesse
Dne 9.9.2014 v 10:28 Christian Hesse napsal(a):
> Files are compressed by gzip. In Makefiles the variable GZIP is
> used, this evaluates to 'gzip gzip' on my system.
>
>>From man gzip:
>> The environment variable GZIP can hold a set of
>> default options for gzip. These options are interpreted first and can
>> be overwritten by explicit command line parameters.
>
> So using any other variable name fixes this.
> ---
> Makefile.inc | 2 +-
> kpartx/Makefile | 2 +-
> libmpathpersist/Makefile | 4 ++--
> mpathpersist/Makefile | 2 +-
> multipathd/Makefile | 2 +-
> 5 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/Makefile.inc b/Makefile.inc
> index 20ae23e..662b1a2 100644
> --- a/Makefile.inc
> +++ b/Makefile.inc
> @@ -42,7 +42,7 @@ libdir = $(prefix)/$(LIB)/multipath
> unitdir = $(prefix)/usr/lib/systemd/system
> mpathpersistdir = $(TOPDIR)/libmpathpersist
>
> -GZIP = gzip -9 -c
> +GZIPCMD = gzip -9 -c
> INSTALL_PROGRAM = install
This rather looks like a bug in your system you should fix locally.
>
> ifndef RPM_OPT_FLAGS
> diff --git a/kpartx/Makefile b/kpartx/Makefile
> index 4ba38ba..d533c9e 100644
> --- a/kpartx/Makefile
> +++ b/kpartx/Makefile
> @@ -21,7 +21,7 @@ all: $(EXEC)
>
> $(EXEC): $(OBJS)
> $(CC) $(OBJS) -o $(EXEC) $(LDFLAGS)
> - $(GZIP) $(EXEC).8 > $(EXEC).8.gz
> + $(GZIPCMD) $(EXEC).8 > $(EXEC).8.gz
Probably pastbin output of your makefile processing here.
Together with your environmental vars.
> --- a/libmpathpersist/Makefile
> +++ b/libmpathpersist/Makefile
> @@ -22,8 +22,8 @@ $(LIBS):
> $(CC) -Wall -fPIC -c $(CFLAGS) *.c
> $(CC) -shared $(LIBDEPS) -Wl,-soname=$@ $(CFLAGS) -o $@ $(OBJS)
> ln -s $(LIBS) $(DEVLIB)
> - $(GZIP) mpath_persistent_reserve_in.3 > mpath_persistent_reserve_in.3.gz
> - $(GZIP) mpath_persistent_reserve_out.3 > mpath_persistent_reserve_out.3.gz
> + $(GZIPCMD) mpath_persistent_reserve_in.3 > mpath_persistent_reserve_in.3.gz
> + $(GZIPCMD) mpath_persistent_reserve_out.3 > mpath_persistent_reserve_out.3.gz
On the other hand - I'm quite puzzled why upstream build bothers to compress
man pages?
Common practice is to leave this up-to distro packagers to maintain compressed
man pages?
Or is there some new guide line for projects to build man pages in compressed
form?
Zdenek
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-10 8:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-09 8:28 [PATCH 1/1] fix build, replace GZIP with GZIPCMD Christian Hesse
2014-09-10 8:24 ` Zdenek Kabelac
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.