diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-18 20:32:50 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-18 20:33:40 +0200 |
commit | b2aba4640687831eca12aed3af530d1c6710bc11 (patch) | |
tree | c1f2ee1f97076888dd1345dcb32827d78bd87bc4 /utils/tcsh/Makefile | |
parent | 4116e327afee80aaea33a16358f5f7c0da687bec (diff) |
tcsh: fix musl compatibility
Avoid using `union wait` under musl as it does not provide this definition.
Implement solution suggested by http://www.openwall.com/lists/musl/2013/06/21/4
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'utils/tcsh/Makefile')
-rw-r--r-- | utils/tcsh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/tcsh/Makefile b/utils/tcsh/Makefile index e2b6b4fdc..2c68a4a0d 100644 --- a/utils/tcsh/Makefile +++ b/utils/tcsh/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2011-2014 OpenWrt.org +# Copyright (C) 2011-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tcsh PKG_VERSION:=6.19.00 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/ |