Просмотр исходного кода

resolveip: Forward LDFLAGS

Forward the TARGET_LDFLAGS to the linking process.

Link: https://github.com/openwrt/openwrt/pull/20813
Signed-off-by: Hauke Mehrtens <[email protected]>
Hauke Mehrtens 1 месяц назад
Родитель
Сommit
2fc6a143a7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      package/network/utils/resolveip/Makefile

+ 1 - 1
package/network/utils/resolveip/Makefile

@@ -29,7 +29,7 @@ define Package/resolveip/description
 endef
 
 define Build/Compile
-	$(TARGET_CC) $(TARGET_CFLAGS) -Wall \
+	$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -Wall \
 		-o $(PKG_BUILD_DIR)/resolveip $(PKG_BUILD_DIR)/resolveip.c
 endef