Clean up passt.pid file
If the tests are interrupted at the right point a passt.pid file can be left over. Clean it up with "make clean" and add it to .gitignore so it doesn't get accidentally committed. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
b44e16ed6c
commit
ed63892a16
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,3 +6,4 @@
|
||||||
/qrap
|
/qrap
|
||||||
/pasta.1
|
/pasta.1
|
||||||
/seccomp.h
|
/seccomp.h
|
||||||
|
/passt.pid
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -122,7 +122,8 @@ valgrind: all
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(BIN) *.o seccomp.h pasta.1 \
|
$(RM) $(BIN) *.o seccomp.h pasta.1 \
|
||||||
passt.tar passt.tar.gz *.deb *.rpm
|
passt.tar passt.tar.gz *.deb *.rpm \
|
||||||
|
passt.pid
|
||||||
|
|
||||||
install: $(BIN) $(MANPAGES)
|
install: $(BIN) $(MANPAGES)
|
||||||
mkdir -p $(DESTDIR)$(prefix)/bin $(DESTDIR)$(prefix)/share/man/man1
|
mkdir -p $(DESTDIR)$(prefix)/bin $(DESTDIR)$(prefix)/share/man/man1
|
||||||
|
|
Loading…
Reference in a new issue