From 6a82d7c2ba64c8e0fc18db50864c46f55f7a69b3 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Sun, 17 May 2020 12:39:38 +0100 Subject: [PATCH] wmcore: install bin directory. --- wmcore/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wmcore/Makefile b/wmcore/Makefile index c1b0214..cf670aa 100644 --- a/wmcore/Makefile +++ b/wmcore/Makefile @@ -1,3 +1,6 @@ +PREFIX = /usr +BINDIR = $(PREFIX)/bin + INSTALL = /usr/bin/install LD = $(CC) @@ -27,7 +30,8 @@ clean: rm -f $(OBJS) wmcore install: - $(INSTALL) -m 0755 wmcore $(DESTDIR)/usr/bin + $(INSTALL) -d $(DESTDIR)$(BINDIR) + $(INSTALL) -m 0755 wmcore $(DESTDIR)$(BINDIR) uninstall: rm -f /usr/bin/wmcore -- 2.11.4.GIT