2022-03-18 17:16:16 +01:00
|
|
|
From: Jeff Mahoney <jeffm@suse.com>
|
|
|
|
Subject: skip git submodule import for OBS build
|
|
|
|
|
|
|
|
For OBS builds, the git submodule is imported during obs_scm.
|
|
|
|
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
|
|
---
|
|
|
|
Makefile | 4 ++--
|
|
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
|
|
|
@@ -61,8 +61,8 @@ ifeq ($(BUILD_LIBBPFGO), 1)
|
2022-05-12 19:50:00 +02:00
|
|
|
vql/linux/chattrsnoop/chattrsnoop.bpf.o
|
2022-03-18 17:16:16 +01:00
|
|
|
|
|
|
|
$(LIBBPFGO_DIR): always-check
|
|
|
|
- echo "INFO: updating submodule 'libbpfgo'"
|
|
|
|
- $(GIT) submodule update --init --recursive $@
|
|
|
|
+# echo "INFO: updating submodule 'libbpfgo'"
|
|
|
|
+# $(GIT) submodule update --init --recursive $@
|
2022-11-12 02:51:37 +01:00
|
|
|
|
|
|
|
$(LIBBPF_LIB): $(LIBBPFGO_DIR)
|
|
|
|
make -C $(LIBBPFGO_DIR) libbpfgo-full-static
|