From 91c5f26dd48c305d3c02c5421faaf521689d4a26 Mon Sep 17 00:00:00 2001 From: Mark Fasheh Date: Thu, 19 Oct 2006 19:15:08 +0200 Subject: [PATCH] [PATCH] make install fix Create mandir before trying to copy files into it. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ea113fc..a83dd24 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ mandir = $(prefix)/man install: $(PROGS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(DESTDIR)$(bindir) + $(INSTALL) -m755 -d $(DESTDIR)$(mandir)/man2 $(INSTALL) $(MANS) $(DESTDIR)$(mandir)/man2 ifneq ($(wildcard .depend),) -- 2.25.1