kselftest/alsa: Ensure _GNU_SOURCE is defined
authorMark Brown <broonie@kernel.org>
Thu, 16 May 2024 15:27:33 +0000 (16:27 +0100)
committerShuah Khan <skhan@linuxfoundation.org>
Wed, 29 May 2024 18:23:57 +0000 (12:23 -0600)
The pcmtest driver tests use the kselftest harness which requires that
_GNU_SOURCE is defined but nothing causes it to be defined.  Since the
KHDR_INCLUDES Makefile variable has had the required define added let's
use that, this should provide some futureproofing.

Fixes: daef47b89efd ("selftests: Compile kselftest headers with -D_GNU_SOURCE")
Signed-off-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/alsa/Makefile

index 5af9ba8a4645bc5fb86f724e8619e8e2d25ca11a..c1ce39874e2b5451d1caac769925ca4c0351fb98 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0
 #
 
-CFLAGS += $(shell pkg-config --cflags alsa)
+CFLAGS += $(shell pkg-config --cflags alsa) $(KHDR_INCLUDES)
 LDLIBS += $(shell pkg-config --libs alsa)
 ifeq ($(LDLIBS),)
 LDLIBS += -lasound