From: Hauke Mehrtens Date: Sat, 18 Apr 2020 15:42:02 +0000 (+0200) Subject: upgs: Remove extra _DEFAULT_SOURCE definition X-Git-Tag: v19.07.3~31 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=55ccb04046ea8b339f31be1f0adc3dc46120a0cf upgs: Remove extra _DEFAULT_SOURCE definition This extra _DEFAULT_SOURCE definition results in a double definition which is a compile error. This fixes the following compile error with glibc: ---------------------------------------------------------------------- ugps-2019-06-25-cd7eabcd/nmea.c:19: error: "_DEFAULT_SOURCE" redefined [-Werror] #define _DEFAULT_SOURCE : note: this is the location of the previous definition cc1: all warnings being treated as errors Signed-off-by: Hauke Mehrtens (cherry picked from commit 70a962ca6f13e82d8d67f5c8ee65064a41f66a9c) --- diff --git a/package/utils/ugps/Makefile b/package/utils/ugps/Makefile index 6eae5afbcf..85c64533d1 100644 --- a/package/utils/ugps/Makefile +++ b/package/utils/ugps/Makefile @@ -31,10 +31,6 @@ endef TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include -ifneq ($(CONFIG_USE_GLIBC),) - TARGET_CFLAGS += -D_DEFAULT_SOURCE -endif - define Package/ugps/conffiles /etc/config/gps endef