User: Hum

From LibrePlanet
Jump to: navigation, search
(Created page with "== running makeicecat in devuan == * needs bash, hg (mercurial), gpg, grep, sed, wget * tor not running, key not found?! - Mail to [https://lists.gnu.org/archive/html/gnuzill...")
 
Line 27: Line 27:
 
cat: /n/icecat/icecat/data/files-to-append/./intl/locales/fi/hyphenation/LICENSE:
 
cat: /n/icecat/icecat/data/files-to-append/./intl/locales/fi/hyphenation/LICENSE:
 
Datei oder Verzeichnis nicht gefunden
 
Datei oder Verzeichnis nicht gefunden
 +
</pre>
 +
* created an empty file to fool the script
 +
<pre>
 +
mkdir data
 +
mkdir data/files-to-append
 +
mkdir data/files-to-append/intl
 +
mkdir data/files-to-append/intl/locales/
 +
mkdir data/files-to-append/intl/locales/fi
 +
mkdir data/files-to-append/intl/locales/fi/hyphenation
 +
touch data/files-to-append/intl/locales/fi/hyphenation/LICENSE
 +
</pre>
 +
 +
then it fails at
 +
<pre>
 +
+ [[ l10n/ach != l10n/compare-locales ]]
 +
+ [[ ! -e /n/icecat/icecat/data/files-to-append/l10n/ach/browser/browser/preferences/preferences.ftl ]]
 +
+ cat /n/icecat/icecat/data/files-to-append/browser/locales/en-US/browser/preferences/preferences.ftl
 +
cat: /n/icecat/icecat/data/files-to-append/browser/locales/en-US/browser/preferences/preferences.ftl: Datei oder Verzeichnis nicht gefunden
 
</pre>
 
</pre>

Revision as of 16:24, 12 January 2020

running makeicecat in devuan

  • it stops with
+ mv compare-locales icecat-68.4.1/l10n
+ cd icecat-68.4.1
+ shopt -s nullglob
+ shopt -u nullglob
++ cd /n/icecat/icecat/data/files-to-append
./makeicecat.sh: Zeile 91: cd: /n/icecat/icecat/data/files-to-append: Datei oder V
erzeichnis nicht gefunden
++ find . -type f -print
+ for file_to_append in $(cd $DATA/files-to-append; find . -type f -print)
+ echo Appending new data to the end of file: ./intl/locales/fi/hyphenation/LICENSE
Appending new data to the end of file: ./intl/locales/fi/hyphenation/LICENSE
+ cat /n/icecat/icecat/data/files-to-append/./intl/locales/fi/hyphenation/LICENSE
cat: /n/icecat/icecat/data/files-to-append/./intl/locales/fi/hyphenation/LICENSE:
Datei oder Verzeichnis nicht gefunden
  • created an empty file to fool the script
mkdir data
mkdir data/files-to-append
mkdir data/files-to-append/intl
mkdir data/files-to-append/intl/locales/
mkdir data/files-to-append/intl/locales/fi
mkdir data/files-to-append/intl/locales/fi/hyphenation
touch data/files-to-append/intl/locales/fi/hyphenation/LICENSE

then it fails at

+ [[ l10n/ach != l10n/compare-locales ]]
+ [[ ! -e /n/icecat/icecat/data/files-to-append/l10n/ach/browser/browser/preferences/preferences.ftl ]]
+ cat /n/icecat/icecat/data/files-to-append/browser/locales/en-US/browser/preferences/preferences.ftl
cat: /n/icecat/icecat/data/files-to-append/browser/locales/en-US/browser/preferences/preferences.ftl: Datei oder Verzeichnis nicht gefunden