All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/3] Makefile: Fix bug when running in parallel
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
@ 2021-03-20 23:07 ` Alejandro Colomar
  2021-03-20 23:07 ` [PATCH 3/3] .gitignore: Add file Alejandro Colomar
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-20 23:07 UTC (permalink / raw)
  To: mtk.manpages
  Cc: Alejandro Colomar, linux-man, Debian man-pages, Dr. Tobias Quathamer

Prerequisites can run in parallel.  This wouldn't make any sense
when uninstalling and installing again.

For that, use consecutive commands, which run one after the other
even with multiple cores.

Cc: Debian man-pages <manpages@packages.debian.org>
Cc: "Dr. Tobias Quathamer" <toddy@debian.org>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a7a4ca284..683dd12be 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,9 @@ INSTALL_DATA = $(INSTALL) -m 644
 INSTALL_DIR = $(INSTALL) -m 755 -d
 
 .PHONY: all
-all: remove install
+all:
+	$(MAKE) uninstall;
+	$(MAKE) install;
 
 # Use with
 #  make HTOPTS=whatever html
-- 
2.31.0


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

* [PATCH 3/3] .gitignore: Add file
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
  2021-03-20 23:07 ` [PATCH 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
@ 2021-03-20 23:07 ` Alejandro Colomar
  2021-03-20 23:19 ` [PATCH v2 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-20 23:07 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

Ignore:
    .html: directory for building html pages.
    .patches: directory for storing patches before sending
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..593d39213
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.html
+.patches
-- 
2.31.0


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

* [PATCH v2 2/3] Makefile: Fix bug when running in parallel
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
  2021-03-20 23:07 ` [PATCH 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
  2021-03-20 23:07 ` [PATCH 3/3] .gitignore: Add file Alejandro Colomar
@ 2021-03-20 23:19 ` Alejandro Colomar
  2021-03-20 23:19 ` [PATCH v2 3/3] .gitignore: Add file Alejandro Colomar
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-20 23:19 UTC (permalink / raw)
  To: mtk.manpages
  Cc: Alejandro Colomar, linux-man, Debian man-pages, Dr. Tobias Quathamer

Prerequisites can run in parallel.  This wouldn't make any sense
when uninstalling and installing again.

For that, use consecutive commands, which run one after the other
even with multiple cores.

Cc: Debian man-pages <manpages@packages.debian.org>
Cc: "Dr. Tobias Quathamer" <toddy@debian.org>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---

v2: No changes; resend

 Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a7a4ca284..683dd12be 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,9 @@ INSTALL_DATA = $(INSTALL) -m 644
 INSTALL_DIR = $(INSTALL) -m 755 -d
 
 .PHONY: all
-all: remove install
+all:
+	$(MAKE) uninstall;
+	$(MAKE) install;
 
 # Use with
 #  make HTOPTS=whatever html
-- 
2.31.0


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

* [PATCH v2 3/3] .gitignore: Add file
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
                   ` (2 preceding siblings ...)
  2021-03-20 23:19 ` [PATCH v2 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
@ 2021-03-20 23:19 ` Alejandro Colomar
  2021-03-28 19:06 ` [PATCH v3 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
  2021-03-28 19:06 ` [PATCH v3 3/3] .gitignore: Add file Alejandro Colomar
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-20 23:19 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

Ignore:
    .html: directory for building html pages.
    .patches: directory for storing patches before sending
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---

v2: No changes; resend

 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..593d39213
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.html
+.patches
-- 
2.31.0


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

* [PATCH v3 2/3] Makefile: Fix bug when running in parallel
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
                   ` (3 preceding siblings ...)
  2021-03-20 23:19 ` [PATCH v2 3/3] .gitignore: Add file Alejandro Colomar
@ 2021-03-28 19:06 ` Alejandro Colomar
  2021-03-28 19:06 ` [PATCH v3 3/3] .gitignore: Add file Alejandro Colomar
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-28 19:06 UTC (permalink / raw)
  To: mtk.manpages
  Cc: Alejandro Colomar, linux-man, Jakub Wilk, Debian man-pages,
	Dr. Tobias Quathamer

Prerequisites can run in parallel.  This wouldn't make any sense
when uninstalling and installing again.

For that, use consecutive commands, which run one after the other
even with multiple cores.

Cc: Debian man-pages <manpages@packages.debian.org>
Cc: "Dr. Tobias Quathamer" <toddy@debian.org>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 430090801..fdfaf9645 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,9 @@ INSTALL_DATA = $(INSTALL) -m 644
 INSTALL_DIR = $(INSTALL) -m 755 -d
 
 .PHONY: all
-all: remove install
+all:
+	$(MAKE) uninstall;
+	$(MAKE) install;
 
 # Use with
 #  make HTOPTS=whatever html
-- 
2.31.0


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

* [PATCH v3 3/3] .gitignore: Add file
       [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
                   ` (4 preceding siblings ...)
  2021-03-28 19:06 ` [PATCH v3 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
@ 2021-03-28 19:06 ` Alejandro Colomar
  5 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar @ 2021-03-28 19:06 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man, Jakub Wilk

Ignore:
    .html: directory for building html pages.
    .patches: directory for storing patches before sending
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..593d39213
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.html
+.patches
-- 
2.31.0


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

end of thread, other threads:[~2021-03-28 19:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20210320230659.182237-1-alx.manpages@gmail.com>
2021-03-20 23:07 ` [PATCH 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
2021-03-20 23:07 ` [PATCH 3/3] .gitignore: Add file Alejandro Colomar
2021-03-20 23:19 ` [PATCH v2 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
2021-03-20 23:19 ` [PATCH v2 3/3] .gitignore: Add file Alejandro Colomar
2021-03-28 19:06 ` [PATCH v3 2/3] Makefile: Fix bug when running in parallel Alejandro Colomar
2021-03-28 19:06 ` [PATCH v3 3/3] .gitignore: Add file Alejandro Colomar

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.