From 25866ec6a6c5d551f6d7c230d5ce1f641fd138ae Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 19 Apr 2016 11:13:00 +0200 Subject: [PATCH] examples: Try harder to uninstall nwfilter We have this code in our Makefile that tries to remove /etc/libvirt/nwfilter if directory is left empty after all our example nwfilters were uninstalled. However, the check for that is missing quotation marks thus rendering the test useless: test -z allow-arp.xml allow-dhcp-server.xml .. qemu-announce-self.xml || \ rmdir "/some/path/libvirt.git/_install/etc/libvirt/nwfilter" /bin/sh: line 0: test: too many arguments Signed-off-by: Michal Privoznik --- examples/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index 46465f9e5a..e1c37f05f8 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -90,5 +90,5 @@ uninstall-local:: for f in $(FILTERS); do \ rm -f "$(NWFILTER_DIR)/`basename $$f`"; \ done - -test -z $(shell ls $(NWFILTER_DIR)) || rmdir $(NWFILTER_DIR) + -test -z "$(shell ls $(NWFILTER_DIR))" || rmdir $(NWFILTER_DIR) endif WITH_NWFILTER