diff options
-rw-r--r-- | inspector/Makefile.am | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/inspector/Makefile.am b/inspector/Makefile.am index 69b5683e..435ba872 100644 --- a/inspector/Makefile.am +++ b/inspector/Makefile.am @@ -100,10 +100,18 @@ endif # can run them. Instead you can run them by hand. example-debian.xml: - ./run-inspector-locally ../images/debian.img > $@ + rm -f $@ $@-t + ./run-inspector-locally ../images/debian.img > $@-t + mv $@-t $@ example-fedora.xml: - ./run-inspector-locally ../images/fedora.img > $@ + rm -f $@ $@-t + ./run-inspector-locally ../images/fedora.img > $@-t + mv $@-t $@ example-ubuntu.xml: - ./run-inspector-locally ../images/ubuntu.img > $@ + rm -f $@ $@-t + ./run-inspector-locally ../images/ubuntu.img > $@-t + mv $@-t $@ example-windows.xml: - ./run-inspector-locally ../images/windows.img | fgrep -v '<uuid>' > $@ + rm -f $@ $@-t + ./run-inspector-locally ../images/windows.img | fgrep -v '<uuid>' > $@-t + mv $@-t $@ |