diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2019-02-28 18:43:38 +0100 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2019-02-28 19:09:35 +0100 |
commit | b2bf3745ff7e5e2fbf3b7b0e488cfaa5b3cca87c (patch) | |
tree | 3ed0fadae87ea44841c03401e27aa6cb4d054a56 /package/libs/ncurses/Makefile | |
parent | ba3690c90c9717871ec71b24d22d9da2f283762f (diff) | |
download | upstream-b2bf3745ff7e5e2fbf3b7b0e488cfaa5b3cca87c.tar.gz upstream-b2bf3745ff7e5e2fbf3b7b0e488cfaa5b3cca87c.tar.bz2 upstream-b2bf3745ff7e5e2fbf3b7b0e488cfaa5b3cca87c.zip |
package/ncurses: change AR options to fix reproducible builds
ar has a deterministic (-D) and non-deterministic (-U) mode.
OpenWrt is already using the deterministic mode by default,
but ncurses' configure script force this to be non-deterministic.
Since autoreconf fails to generate a new configure, the configure script
is directly modified.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'package/libs/ncurses/Makefile')
-rw-r--r-- | package/libs/ncurses/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/ncurses/Makefile b/package/libs/ncurses/Makefile index 604a02db52..8c961f30b2 100644 --- a/package/libs/ncurses/Makefile +++ b/package/libs/ncurses/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ncurses PKG_VERSION:=6.1 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |