diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-11-18 16:36:59 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-11-18 16:37:43 +0100 |
commit | 49d30402fafa3571d4d3e1a79b4d08cc90318224 (patch) | |
tree | 35034c43201e666e93ce1e890c031859e4401c7f /app-editors | |
parent | app-emacs/develock: Remove old. (diff) | |
download | gentoo-49d30402fafa3571d4d3e1a79b4d08cc90318224.tar.gz gentoo-49d30402fafa3571d4d3e1a79b4d08cc90318224.tar.bz2 gentoo-49d30402fafa3571d4d3e1a79b4d08cc90318224.zip |
app-editors/emacs-vcs: Remove sandbox hack in src_compile.
Configure with explicit option --with-dumping=pdumper to make sure
that the portable dumper is used, even for the (unlikely) case that
the upstream default would change.
Note that (as of today) --with-dumping=unexec breaks the build
process, therefore controlling this option with a USE flag wouldn't
make sense.
Closes: https://bugs.gentoo.org/700182
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild index 832d7156dc3b..baa5e8dff5e0 100644 --- a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild @@ -260,6 +260,7 @@ src_configure() { --without-compress-install \ --without-hesiod \ --without-pop \ + --with-dumping=pdumper \ --with-file-notification=$(usev inotify || usev gfile || echo no) \ $(use_enable acl) \ $(use_with dbus) \ @@ -281,10 +282,10 @@ src_configure() { ${myconf} } -src_compile() { - # Disable sandbox when dumping. For the unbelievers, see bug #131505 - emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" -} +#src_compile() { +# # Disable sandbox when dumping. For the unbelievers, see bug #131505 +# emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" +#} src_install () { emake DESTDIR="${D}" NO_BIN_LINK=t install |