diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-10-29 15:48:34 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-10-29 15:48:34 +0000 |
commit | 77e195a2cb0ec009e4f1c7579a021181157b1441 (patch) | |
tree | 06e6d976016b509b745c54881c0fe0a7a3aeb8bd /target | |
parent | 411d1ba1bbfc183121891e8e8206a0be4fd5c694 (diff) | |
download | upstream-77e195a2cb0ec009e4f1c7579a021181157b1441.tar.gz upstream-77e195a2cb0ec009e4f1c7579a021181157b1441.tar.bz2 upstream-77e195a2cb0ec009e4f1c7579a021181157b1441.zip |
fix dfboot linking failures (#5937)
SVN-Revision: 18206
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/at91/image/dfboot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/at91/image/dfboot/Makefile b/target/linux/at91/image/dfboot/Makefile index 344af5d56d..91a603de4e 100644 --- a/target/linux/at91/image/dfboot/Makefile +++ b/target/linux/at91/image/dfboot/Makefile @@ -24,7 +24,8 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" + CFLAGS="$(TARGET_CFLAGS)" \ + LDFLAGS="$(LIBGCC_S)" endef define Build/InstallDev |