diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-02-27 21:02:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 11:39:55 +0000 |
commit | 3ef230143d046dd53b877b224b8ebab1fdc61338 (patch) | |
tree | da3d43b5b64e93dbaba6a8aae96c06daf4c08679 /Makefile | |
parent | Releasing version 20210101. (diff) | |
download | compute-tools-3ef230143d046dd53b877b224b8ebab1fdc61338.tar.xz compute-tools-3ef230143d046dd53b877b224b8ebab1fdc61338.zip |
Adding container-shell.py.tmp-python
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -62,7 +62,7 @@ install: build mkdir -p $(DESTDIR)/etc/$(PROJECT)/$(PROGRAM)/hooks mkdir -p $(DESTDIR)/usr/bin - cp -r bin/* $(DESTDIR)/usr/bin + cp -r bin/* bin.py/* $(DESTDIR)/usr/bin mkdir -p $(DESTDIR)/usr/lib/$(PROJECT) cp -r lib/* $(DESTDIR)/usr/lib/$(PROJECT) @@ -180,7 +180,7 @@ uninstall: rm -rf $(DESTDIR)/usr/lib/$(PROJECT)/$(PROGRAM) rmdir --ignore-fail-on-non-empty --parents $(DESTDIR)/usr/lib || true - for FILE in bin/*; \ + for FILE in bin/* bin.py/*; \ do \ rm -f $(DESTDIR)/usr/bin/$$(basename $${FILE}); \ done |