Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1668499 > unrolled thread
| Started by | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| First post | 2017-06-18 03:00 +0200 |
| Last post | 2017-06-18 05:00 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 3/3] selftest/net/Makefile: Specify output with $(OUTPUT) SeongJae Park <sj38.park@gmail.com> - 2017-06-18 03:00 +0200
Re: [PATCH 3/3] selftest/net/Makefile: Specify output with $(OUTPUT) David Miller <davem@davemloft.net> - 2017-06-18 05:00 +0200
| From | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| Date | 2017-06-18 03:00 +0200 |
| Subject | [PATCH 3/3] selftest/net/Makefile: Specify output with $(OUTPUT) |
| Message-ID | <tTwJj-6yj-9@gated-at.bofh.it> |
After commit a8ba798bc8ec ("selftests: enable O and KBUILD_OUTPUT"),
net selftest build fails because it points output file without $(OUTPUT)
yet. This commit fixes the error.
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Fixes: a8ba798bc8ec ("selftests: enable O and KBUILD_OUTPUT")
---
tools/testing/selftests/net/Makefile | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tools/testing/selftests/net/Makefile b/tools/testing/selftests/net/Makefile
index 35cbb4cba410..f6c9dbf478f8 100644
--- a/tools/testing/selftests/net/Makefile
+++ b/tools/testing/selftests/net/Makefile
@@ -3,8 +3,6 @@
CFLAGS = -Wall -Wl,--no-as-needed -O2 -g
CFLAGS += -I../../../../usr/include/
-reuseport_bpf_numa: LDFLAGS += -lnuma
-
TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh netdevice.sh
TEST_GEN_FILES = socket
TEST_GEN_FILES += psock_fanout psock_tpacket
@@ -13,3 +11,4 @@ TEST_GEN_FILES += reuseport_dualstack
include ../lib.mk
+$(OUTPUT)/reuseport_bpf_numa: LDFLAGS += -lnuma
--
2.13.0
[toc] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2017-06-18 05:00 +0200 |
| Subject | Re: [PATCH 3/3] selftest/net/Makefile: Specify output with $(OUTPUT) |
| Message-ID | <tTyBr-7Md-1@gated-at.bofh.it> |
| In reply to | #1668499 |
From: SeongJae Park <sj38.park@gmail.com>
Date: Sun, 18 Jun 2017 09:56:04 +0900
> After commit a8ba798bc8ec ("selftests: enable O and KBUILD_OUTPUT"),
> net selftest build fails because it points output file without $(OUTPUT)
> yet. This commit fixes the error.
>
> Signed-off-by: SeongJae Park <sj38.park@gmail.com>
> Fixes: a8ba798bc8ec ("selftests: enable O and KBUILD_OUTPUT")
Acked-by: David S. Miller <davem@davemloft.net>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web