Browse Source

Merge pull request #2150 from commodo/mdnsresponder-build-fix

mdnsresponder: (fix build) use TARGET_CC as LD
lilik-openwrt-22.03
Steven Barth 9 years ago
parent
commit
4528c4b2d8
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      net/mdnsresponder/Makefile

+ 2
- 1
net/mdnsresponder/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mDNSResponder
PKG_VERSION:=567
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=mDNSResponder-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://opensource.apple.com/tarballs/mDNSResponder/
@ -85,6 +85,7 @@ endef
# I have no idea why -lc is required, but without it, C library symbols are
# not found:
MAKE_FLAGS += \
LD="$(TARGET_CC)" \
CFLAGS_DEBUG="$(TARGET_CFLAGS)" \
LINKOPTS=-lc \
LDCONFIG= \


Loading…
Cancel
Save