From: Phileas Fogg <phileas-fogg@mail.ru>
To: dm-devel@redhat.com
Subject: [PATCH] Fix gzip path in Makefile.inc
Date: Thu, 21 Feb 2013 23:47:22 +0100 [thread overview]
Message-ID: <5126A3FA.8070807@mail.ru> (raw)
Hi,
i would like to submit a patch which fixes the path to gzip in Makefile.inc
Makefile.inc uses the absolute path /bin/gzip which isn't valid on all Linux
distros. E.g. on Arch Linux which i'm cuurrently using the gzip tool is
installed in /usr/bin/gzip. The patch fixes the build problem on Linux distros
which do not have gzip in /bin directory.
From fe391d79dd3361ba2714ac016b755fea0c9217eb Mon Sep 17 00:00:00 2001
From: glevand <geoffrey.levand@mail.ru>
Date: Thu, 21 Feb 2013 23:42:39 +0100
Subject: [PATCH] fix gzip path
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index b0c68f4..92d2289 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -35,7 +35,7 @@ libdir = $(prefix)/$(LIB)/multipath
unitdir = $(prefix)/lib/systemd/system
mpathpersistdir = $(TOPDIR)/libmpathpersist
-GZIP = /bin/gzip -9 -c
+GZIP = gzip -9 -c
INSTALL_PROGRAM = install
ifndef RPM_OPT_FLAGS
--
1.8.1.3
next reply other threads:[~2013-02-21 22:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-21 22:47 Phileas Fogg [this message]
2013-02-24 15:43 ` [PATCH] Fix gzip path in Makefile.inc Christophe Varoqui
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5126A3FA.8070807@mail.ru \
--to=phileas-fogg@mail.ru \
--cc=dm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.