diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2016-05-30 11:53:51 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-05-30 11:53:51 +0200 |
commit | e71edacde7132b08f3340eebbfea3692d53151db (patch) | |
tree | 9baf5656f02a992eb2a0bd46bb15b7a1cedb18b9 | |
parent | 6ce34e774ed59da51985a4ba0d69d9d39f6f9358 (diff) | |
download | vconsole-e71edacde7132b08f3340eebbfea3692d53151db.tar.gz |
fix make install
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 94f49ec..5bb1bca 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -73,7 +73,8 @@ install: build $(INSTALL_BINARY) $(TARGETS) $(bindir) $(INSTALL_DATA) vconsole.man $(mandir)/man1/vconsole.1 $(INSTALL_DATA) $(DESKTOP) $(appdir) - $(INSTALL_DATA) $(SERVICE) /usr/lib/systemd/system + $(INSTALL_DIR) $(DESTDIR)/usr/lib/systemd/system + $(INSTALL_DATA) $(SERVICE) $(DESTDIR)/usr/lib/systemd/system valgrind: vconsole rm -f valgrind.log |