From fe15b744ee090cfbf4722da9fadc8d9b1efb98cc Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Mon, 1 Nov 2010 14:02:25 +0100 Subject: [PATCH] Makefile: create dir for vdagentd socket --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index afe6cb2..5a67890 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ bindir ?= /usr/bin initdir ?= /etc/rc.d/init.d xdgautostartdir ?= /etc/xdg/autostart gdmautostartdir ?= /usr/share/gdm/autostart/LoginWindow +socketdir ?= /var/run/spice-vdagentd CFLAGS ?= -O2 -g -Wall CPPFLAGS = $(shell pkg-config --cflags spice-protocol) @@ -19,6 +20,7 @@ build: $(TARGETS) install: build install -d $(DESTDIR)$(bindir) install -d $(DESTDIR)$(sbindir) + install -d $(DESTDIR)$(socketdir) install -p -m 755 spice-vdagent $(DESTDIR)$(bindir) install -p -m 755 spice-vdagentd $(DESTDIR)$(sbindir) install -d $(DESTDIR)$(initdir) -- 2.11.4.GIT