mmc-utils: don't set -D_FORTIFY_SOURCE in Makefile
Now that security features are set globally, having the
FORTIFY_SOURCE option set in Makefile breaks the build when
CONFIG_PKG_FORTIFY_SOURCE_{1,2} is enabled as well.
arm-openwrt-linux-uclibcgnueabi-gcc -Wall -Werror -Wuninitialized -Wundef -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -Os -pipe -march=armv6k -mtune=mpcore -fno-caller-saves -fhonour-copts -Wno-error=unused-but-set-variable -mfloat-abi=soft -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -Wp,-MMD,./.mmc.o.d,-MT,mmc.o -c mmc.c -o mmc.o
<command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
<command-line>:0:0: note: this is the location of the previous definition
cc1: all warnings being treated as errors
Makefile:35: recipe for target 'mmc.o' failed
Fix this by removing -D_FORTIFY_SOURCE=2 from Makefile.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
10 years ago |
|
- #
- # Copyright (C) 2015 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=mmc-utils
- PKG_VERSION=2015-03-06-$(PKG_SOURCE_VERSION)
- PKG_RELEASE:=2
-
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_URL:=https://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git
- PKG_SOURCE_VERSION:=f4eb241519f8d500ce6068a70d2389be39ac5189
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_SOURCE_VERSION)
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz
-
- PKG_LICENSE:=GPL-2.0
- PKG_LICENSE_FILES:=
-
- PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
-
- PKG_BUILD_PARALLEL:=1
- PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_SOURCE_VERSION)
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/mmc-utils
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE:=Userspace tools for MMC/SD devices
- URL:=http://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git
- endef
-
- define Package/mmc-utils/description
- This package contains the userspace mmc utils, the userspace
- counterpart to the Linux MMC/SD subsystem.
- endef
-
- define Build/Configure
- endef
-
- define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- $(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" \
- mmc
- endef
-
- define Package/mmc-utils/install
- $(INSTALL_DIR) $(1)/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/mmc $(1)/sbin
- endef
-
- $(eval $(call BuildPackage,mmc-utils))
|