diff options
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash/distinfo | 3 | ||||
-rw-r--r-- | shells/bash/patches/patch-configure | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/shells/bash/distinfo b/shells/bash/distinfo index 24fdb870027..5c30f0bbc2c 100644 --- a/shells/bash/distinfo +++ b/shells/bash/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.38 2014/10/07 00:16:52 wiz Exp $ +$NetBSD: distinfo,v 1.39 2014/11/23 00:43:57 dholland Exp $ SHA1 (bash-4.3.tar.gz) = 45ac3c5727e7262334f4dfadecdf601b39434e84 RMD160 (bash-4.3.tar.gz) = cd21a9f51ea7780994d4e2c9c7d16d5eb000f845 @@ -97,6 +97,7 @@ SHA1 (patch-af) = dfd1d1be3d822cfc3ae0fd21bb2bbd3e35b11f0d SHA1 (patch-ag) = 4da0a43f6b890482affff46b18eef4be67770e48 SHA1 (patch-aj) = 8b3c52c2aee9cf53ee5a9ce64ead243d0970305e SHA1 (patch-builtins_ulimit.def) = d4cb59bedc6a6199f9a99a3530c99374e428baeb +SHA1 (patch-configure) = ae72a864325761bfbdde85761fd849e49968dff0 SHA1 (patch-lib_readline_colors.c) = f2f47e7aa0b5c1e999368109de10f80e39fd4438 SHA1 (patch-shell.c) = 08e55c3fa57a9e8eb6366c4eba91aa70f487acb2 SHA1 (patch-variables.c) = 55472b2c79451cd1bc7bd4bf097c9b697f95f521 diff --git a/shells/bash/patches/patch-configure b/shells/bash/patches/patch-configure new file mode 100644 index 00000000000..6daa9123224 --- /dev/null +++ b/shells/bash/patches/patch-configure @@ -0,0 +1,16 @@ +$NetBSD: patch-configure,v 1.1 2014/11/23 00:43:57 dholland Exp $ + +Use -Wl,-R instead of just -R to avoid breaking the build on FreeBSD. +From Dennis Lindroos in PR 49375. + +--- configure~ 2014-02-11 15:38:00.000000000 +0000 ++++ configure +@@ -8837,7 +8837,7 @@ fi + fi + if test "X$ltrpathdirs" != "X"; then + for found_dir in $ltrpathdirs; do +- LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" ++ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-Wl,-R$found_dir" + done + fi + |