mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 01:44:32 +04:00
Corresponds to commit 33bbecea in master branch
Ref: https://github.com/openwrt/packages/issues/14244
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
25 lines
738 B
Diff
25 lines
738 B
Diff
From 8b0920febc7f831895e592a1328471696ed271c5 Mon Sep 17 00:00:00 2001
|
|
From: Yousong Zhou <yszhou4tech@gmail.com>
|
|
Date: Sat, 24 Feb 2018 13:43:19 +0800
|
|
Subject: [PATCH] configure: allow disable fortify_source
|
|
|
|
Tell build system of qemu to not add _FORTIFY_SOURCE options and let the
|
|
OpenWrt base build system decide flavor of fortify_source to use
|
|
---
|
|
configure | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 1c563a7027..f4d949b35b 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1518,6 +1518,8 @@ for opt do
|
|
;;
|
|
--disable-libpmem) libpmem=no
|
|
;;
|
|
+ --disable-fortify-source) fortify_source="no"
|
|
+ ;;
|
|
*)
|
|
echo "ERROR: unknown option $opt"
|
|
echo "Try '$0 --help' for more information"
|