All of lore.kernel.org
 help / color / mirror / Atom feed
* [opkg-utils PATCH] Makefile: fixed for-loop in install receipe
@ 2019-05-29 19:03 Joshua DeWeese
  0 siblings, 0 replies; only message in thread
From: Joshua DeWeese @ 2019-05-29 19:03 UTC (permalink / raw)
  To: opkg-devel, yocto; +Cc: Joshua DeWeese

From: Joshua DeWeese <jdeweese@hennypenny.com>

The install receipe would have copied all the manpages to each of the
section folders. This change will do what I believe the original
author had intended.

Signed-off-by: Joshua DeWeese <jdeweese@hennypenny.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 69a1c5a..817a8c1 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ install: all
 	for m in $(MANPAGES); \
 	do \
 		install -d $(DESTDIR)$(mandir)/man$${m##*.}; \
-		install -m 644 $(MANPAGES) $(DESTDIR)$(mandir)/man$${m##*.}; \
+		install -m 644 "$$m" $(DESTDIR)$(mandir)/man$${m##*.}; \
 	done
 
 .PHONY: install all
-- 
2.7.4



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-05-29 19:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-29 19:03 [opkg-utils PATCH] Makefile: fixed for-loop in install receipe Joshua DeWeese

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.