diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-05-20 09:20:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 09:20:10 -0700 |
commit | 9455e46d7ad2c99c1714a1825950b65f3c59dfc0 (patch) | |
tree | daf33bf1ba6888833d83042415c0cf976036808a /net | |
parent | a4bb7e884ffcb30386d4ec175a7840ee1899c1c3 (diff) | |
parent | 71975d68a426b65f0dc2fc0c8ea5b593cffdaa9a (diff) |
Merge pull request #12232 from neheb/cifs
cifs-utils: fix compilation
Diffstat (limited to 'net')
-rw-r--r-- | net/cifs-utils/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/cifs-utils/Makefile b/net/cifs-utils/Makefile index 03f5acac5..ae6a4d8ed 100644 --- a/net/cifs-utils/Makefile +++ b/net/cifs-utils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cifs-utils PKG_VERSION:=6.10 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://download.samba.org/pub/linux-cifs/cifs-utils/ @@ -54,6 +54,9 @@ CONFIGURE_ARGS += \ --disable-man \ --without-libcap +CONFIGURE_ARGS += \ + ac_cv_lib_cap_ng_capng_clear=no + TARGET_CFLAGS += $(FPIC) -ffunction-sections -flto TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed |