From c61f7c78935445bacd71972aea0bbc627c171a27 Mon Sep 17 00:00:00 2001 From: Xavier Bachelot Date: Mon, 8 Jun 2026 14:48:52 +0200 Subject: [PATCH] Create all dirs in install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 835dd67..5173030 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ ppm: ppm.o $(CC) $(LDFLAGS) $(INCS) -shared -o $(PROGRAMS) ppm.o $(CRACKLIB) install: ppm - mkdir -p $(DESTDIR)$(moduledir) + mkdir -p $(DESTDIR)$(moduledir) $(DESTDIR)$(sysconfdir) $(DESTDIR)$(man5dir) for p in $(PROGRAMS); do \ $(LIBTOOL) --mode=install cp $$p $(DESTDIR)/$(moduledir) ; \ done