diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 | ||||
l--------- | bin/cnt | 1 | ||||
l--------- | bin/cntsh | 1 |
3 files changed, 4 insertions, 2 deletions
@@ -77,7 +77,9 @@ install: build fi; \ done + ln -sf container $(DESTDIR)/usr/bin/cnt ln -sf container.1 $(DESTDIR)/usr/share/man/man1/cnt.1 + ln -sf container-shell $(DESTDIR)/usr/bin/cntsh ln -sf container-shell.1 $(DESTDIR)/usr/share/man/man1/cntsh.1 mkdir -p $(DESTDIR)/lib/systemd/system @@ -104,7 +106,9 @@ uninstall: rmdir --ignore-fail-on-non-empty --parents $(DESTDIR)/usr/share/man/man$${SECTION} || true; \ done + rm -f $(DESTDIR)/usr/bin/cnt rm -f $(DESTDIR)/usr/share/man/man1/cnt.1 + rm -f $(DESTDIR)/usr/bin/cntsh rm -f $(DESTDIR)/usr/share/man/man1/cntsh.1 rm -rf $(DESTDIR)/usr/share/doc/$(SOFTWARE) diff --git a/bin/cnt b/bin/cnt deleted file mode 120000 index 50208cb..0000000 --- a/bin/cnt +++ /dev/null @@ -1 +0,0 @@ -container
\ No newline at end of file diff --git a/bin/cntsh b/bin/cntsh deleted file mode 120000 index 38c4486..0000000 --- a/bin/cntsh +++ /dev/null @@ -1 +0,0 @@ -container-shell
\ No newline at end of file |