diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-02-01 03:14:27 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-02-01 08:59:51 +0100 |
commit | 4e53e75339d9a66422c8dcfbfa09a177c3622160 (patch) | |
tree | 3bdd585cb361c59d8bd4d1b2668bb96fa4dfb0b0 /source/e | |
parent | 2c78f43e266f5e7d7b0903f1199441ed19451a08 (diff) | |
download | current-4e53e75339d9a66422c8dcfbfa09a177c3622160.tar.gz |
Mon Feb 1 03:14:27 UTC 202120210201031427
d/python-pip-21.0.1-x86_64-1.txz: Upgraded.
e/emacs-27.1-x86_64-4.txz: Rebuilt.
Rebuilt using --with-pdumper=no and --with-dumping=unexec so that both
emacs-27.1-no-x11 and emacs-27.1-with-x11 will work with the installed files.
Thanks to Tonus.
extra/brltty/brltty-6.3-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/e')
-rwxr-xr-x | source/e/emacs/emacs.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/e/emacs/emacs.SlackBuild b/source/e/emacs/emacs.SlackBuild index ebe3acd0..9716a05d 100755 --- a/source/e/emacs/emacs.SlackBuild +++ b/source/e/emacs/emacs.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=emacs -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} # Determine version number the tarball is labeled with: TARBALLVER=${TARBALLVER:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} # OK, now what's being used as the source directory version number... account @@ -70,6 +70,9 @@ else SLKCFLAGS="-O2" fi +# Without this, the emacs-no-x11 binary won't work with the installed files: +PDUMPER=${PDUMPER:-"--with-pdumper=no --with-dumping=unexec"} + # Don't use icecream: PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g") @@ -113,6 +116,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-modules \ --with-x \ --with-x-toolkit=${X_TOOLKIT:-gtk3} \ + $PDUMPER \ --build=${ARCH}-slackware-linux || exit 1 make $NUMJOBS || make || exit 1 @@ -150,6 +154,7 @@ CXXFLAGS="$SLKCFLAGS" \ --without-gsettings \ --with-modules \ --with-x=no \ + $PDUMPER \ --build=${ARCH}-slackware-linux || exit 1 make $NUMJOBS || make || exit 1 |