Browse Source

Merge pull request #2077 from ryzhovau/etherwake_ldflags

etherwake: respect LDFLAGS
lilik-openwrt-22.03
tripolar 9 years ago
parent
commit
90e1587d07
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      net/etherwake/Makefile

+ 1
- 1
net/etherwake/Makefile View File

@ -36,7 +36,7 @@ define Package/etherwake/description
endef endef
define Build/Compile define Build/Compile
$(TARGET_CC) $(TARGET_CFLAGS) -D__UCLIBC__ $(PKG_BUILD_DIR)/ether-wake.c -o $(PKG_BUILD_DIR)/etherwake
$(TARGET_CC) $(TARGET_CFLAGS) -D__UCLIBC__ $(TARGET_LDFLAGS) $(PKG_BUILD_DIR)/ether-wake.c -o $(PKG_BUILD_DIR)/etherwake
endef endef
define Package/etherwake/install define Package/etherwake/install


Loading…
Cancel
Save