Closed pkryger closed 1 year ago
This is a follow up to #316, basically implementing workaround proposed by @dabrahams.
What I saw was the following in 04.make Homebrew log:
04.make
thisdir=`pwd -P`; \ exp_infodir=`cd "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info" && pwd -P`; \ if [ "`cd ./info && pwd -P`" = "$exp_infodir" ]; then \ true; \ else \ [ -f "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/dir" ] || \ [ ! -f ./info/dir ] || \ /usr/bin/install -c -m 644 ./info/dir "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/dir"; \ info_misc=`MAKEFLAGS= /Library/Developer/CommandLineTools/usr/bin/make --no-print-directory -s -C doc/misc echo-info`; \ cd ./info ; \ for elt in emacs.info eintr.info elisp.info ${info_misc}; do \ for f in `ls $elt $elt-[1-9] $elt-[1-9][0-9] 2>/dev/null`; do \ (cd "${thisdir}"; \ /usr/bin/install -c -m 644 ./info/$f "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/$f"); \ [ -n "/usr/bin/gzip" ] || continue ; \ rm -f "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/$f.gz"; \ /usr/bin/gzip -9n "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/$f"; \ done; \ (cd "${thisdir}"; \ /opt/homebrew/opt/texinfo/bin/install-info --info-dir="/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info" "/opt/homebrew/Cellar/emacs-mac/HEAD-719b04b/share/info/$elt"); \ done; \ fi
My guess is that elt was latching to a .info file, however the file has been compressed and is now a .info.gz file, however, I don't have a spare resources now to debug it further
elt
.info
.info.gz
This is a follow up to #316, basically implementing workaround proposed by @dabrahams.
What I saw was the following in
04.make
Homebrew log:My guess is that
elt
was latching to a.info
file, however the file has been compressed and is now a.info.gz
file, however, I don't have a spare resources now to debug it further