diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-05-16 11:24:04 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-05-16 14:20:08 -0400 |
commit | 9215aba15eba99f7284abb90e9fde8d76c56db1c (patch) | |
tree | d21defa3bba7fa814fbcb3fd92863e6821e53a6d /app-shells/bash/bash-3.1_p23.ebuild | |
parent | mail-client/thunderbird: allow pinentry[qt5] (diff) | |
download | gentoo-9215aba15eba99f7284abb90e9fde8d76c56db1c.tar.gz gentoo-9215aba15eba99f7284abb90e9fde8d76c56db1c.tar.bz2 gentoo-9215aba15eba99f7284abb90e9fde8d76c56db1c.zip |
app-shells/bash: use the system mktemp/mkstemp funcs #574426
Diffstat (limited to 'app-shells/bash/bash-3.1_p23.ebuild')
-rw-r--r-- | app-shells/bash/bash-3.1_p23.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app-shells/bash/bash-3.1_p23.ebuild b/app-shells/bash/bash-3.1_p23.ebuild index 620cbe368ae5..b2eb83a1e3e6 100644 --- a/app-shells/bash/bash-3.1_p23.ebuild +++ b/app-shells/bash/bash-3.1_p23.ebuild @@ -88,14 +88,15 @@ src_configure() { export bash_cv_pgrp_pipe=yes # For descriptions of these, see config-top.h - # bashrc/#26952 bash_logout/#90488 ssh/#24762 + # bashrc/#26952 bash_logout/#90488 ssh/#24762 mktemp/#574426 append-cppflags \ -DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\"\' \ -DSTANDARD_UTILS_PATH=\'\"/bin:/usr/bin:/sbin:/usr/sbin\"\' \ -DSYS_BASHRC=\'\"/etc/bash/bashrc\"\' \ -DSYS_BASH_LOGOUT=\'\"/etc/bash/bash_logout\"\' \ -DNON_INTERACTIVE_LOGIN_SHELLS \ - -DSSH_SOURCE_BASHRC + -DSSH_SOURCE_BASHRC \ + -DUSE_MKTEMP -DUSE_MKSTEMP use static && append-ldflags -static use nls || myconf+=( --disable-nls ) |