Merge pull request #2077 from ryzhovau/etherwake_ldflags

etherwake: respect LDFLAGS
This commit is contained in:
tripolar 2015-12-07 17:42:20 +01:00
commit 90e1587d07
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ define Package/etherwake/description
endef
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
define Package/etherwake/install