diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-02-28 13:33:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 13:33:25 +0100 |
commit | 94bce57350140d4b627e56f62acf1caea3c6ca52 (patch) | |
tree | 8a8f0d76356bcad46fe2c8a9ade0feda26dc79d8 | |
parent | b0fabd44ce663d887d5d47e87587071e67bf2cd2 (diff) | |
parent | 7eeda7fd3e89943f7f5e139950745bb4f90bf904 (diff) |
Merge pull request #23549 from krant/inotify
inotify-tools: fix link error on x86
-rw-r--r-- | utils/inotify-tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/inotify-tools/Makefile b/utils/inotify-tools/Makefile index 6d537a828..1a81c5e0b 100644 --- a/utils/inotify-tools/Makefile +++ b/utils/inotify-tools/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=inotify-tools PKG_VERSION:=4.23.9.0 PKG_HASH:=1dfa33f80b6797ce2f6c01f454fd486d30be4dca1b0c5c2ea9ba3c30a5c39855 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://codeload.github.com/rvoicilas/inotify-tools/tar.gz/$(PKG_VERSION)? PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -25,6 +25,7 @@ endif ## Avoid linking with libstdcpp TARGET_CXXFLAGS+= -nodefaultlibs -lc -fno-exceptions +TARGET_LDFLAGS+= $(if $(CONFIG_USE_MUSL),-lssp_nonshared) define Build/Prepare $(call Build/Prepare/Default) |