diff mbox series

[KIRK,1/1] Makefile: Fix symlink order

Message ID 20230918113524.17908-1-pvorel@suse.cz
State Superseded
Headers show
Series [KIRK,1/1] Makefile: Fix symlink order | expand

Commit Message

Petr Vorel Sept. 18, 2023, 11:35 a.m. UTC
kirk is the target, runltp-ng is the link name.

Fixes: 666a2bd ("Symlink kirk with runltp-ng in LTP installation")
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
If you agree with this change, I'll merge it to
https://github.com/linux-test-project/kirk
And we will need v6 for 
[1] "Replace runltp-ng with kirk framework" patch
(or update the has in first commit).

Kind regards,
Petr

[1] https://patchwork.ozlabs.org/project/ltp/patch/20230918110737.1922-2-andrea.cervesato@suse.de/

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Petr Vorel Sept. 18, 2023, 12:32 p.m. UTC | #1
Hi,

Andrea applied his own patch, thus closing this.

Kind regards,
Petr
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 0bc7ffc..cd7a025 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,6 @@  install:
 	install -m 00644 $(top_srcdir)/tools/kirk/libkirk/*.py $(BASE_DIR)/libkirk
 	install -m 00775 $(top_srcdir)/tools/kirk/kirk $(BASE_DIR)/kirk
 
-	ln -sf $(BASE_DIR)/runltp-ng $(BASE_DIR)/kirk
+	ln -sf $(BASE_DIR)/kirk $(BASE_DIR)/runltp-ng
 
 include $(top_srcdir)/include/mk/generic_leaf_target.mk