6ab70ffd53
Add missing firmware types and enhance -o kubevirt resolves: RHEL-28197
28 lines
775 B
Diff
28 lines
775 B
Diff
From ce67e6e66fdd4140efb1dff961734790f6158271 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Tue, 12 Mar 2024 09:56:55 +0000
|
|
Subject: [PATCH] tests: Don't rebuild real_guests_scripts after clean
|
|
|
|
Move this rule to 'make distclean' so we don't rebuild these scripts
|
|
all the time. It's not necessary as they hardly ever change.
|
|
---
|
|
tests/Makefile.am | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/Makefile.am b/tests/Makefile.am
|
|
index cc297890..723a6506 100644
|
|
--- a/tests/Makefile.am
|
|
+++ b/tests/Makefile.am
|
|
@@ -172,8 +172,10 @@ test-v2v-conversion-of-%.sh:
|
|
chmod 0755 $@-t
|
|
mv $@-t $@
|
|
|
|
+DISTCLEANFILES += \
|
|
+ $(real_guests_scripts)
|
|
+
|
|
CLEANFILES += \
|
|
- $(real_guests_scripts) \
|
|
real-*.img \
|
|
real-*.xml
|
|
|