Browse Source

Further debugging statements for --deps.

tmp/comercial-emacs
Juan Jose Garcia-Ripoll 4 years ago
parent
commit
eac6ac01e4
  1. 3
      emacs-build.sh
  2. 4
      scripts/tools.sh

3
emacs-build.sh

@ -86,6 +86,9 @@ function write_version_number ()
function check_mingw_architecture ()
{
set
ls -l /
ls -l /mingw64
case "$MSYSTEM" in
MINGW32) architecture=i686
mingw_prefix="mingw-w64-i686"

4
scripts/tools.sh

@ -136,12 +136,12 @@ function package_dependencies ()
cd $mingw_dir
echo Mingw dir $mingw_dir
pacman -Ql $dependencies | cut -d ' ' -f 2 | sort | uniq \
| sed "s,^$mingw_dir,,g"
| sed -e "s,^$mingw_dir,,g"
echo Packing
pacman -Ql $dependencies | cut -d ' ' -f 2 | sort | uniq
echo Packing
pacman -Ql $dependencies | cut -d ' ' -f 2 | sort | uniq \
| sed "s,^$mingw_dir,,g" | dependency_filter | xargs zip -9 $zipfile
| sed -e "s,^$mingw_dir,,g" | dependency_filter | xargs zip -9 $zipfile
}
function prepare_source_dir ()

Loading…
Cancel
Save