Dominique Pelle wrote:
> Hi
>
> I see the following error when trying to build the Esperanto dictionary:
>
> $ vim/runtime/spell/eo
> $ aap
> Aap: ../../../src/vim ../README_eo.txt -e -c "set ff=unix" -c wq
> Aap: Error in recipe "/home/pel/sb/vim/runtime/spell/eo/main.aap" line
> 25: Shell command returned 1
>
> Attached patch fixes it.
I found afterwards that the above minor issue is not specific to the
Esperanto dictionary. Attached patch fixes the same issue for other
dictionaries.
Regards
-- Dominique
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
Subscription settings: http://groups.google.com/group/vim_dev/subscribe?hl=en
diff -r 24100651daa9 runtime/spell/bg/main.aap
--- a/runtime/spell/bg/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/bg/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -34,9 +34,9 @@
:fetch bg_BG.zip
:sys $UNZIP bg_BG.zip
:delete bg_BG.zip
- :sys $VIM bg_BG.aff -e -c "set ff=unix" -c update -c q
- :sys $VIM bg_BG.dic -e -c "set ff=unix" -c update -c q
- :sys $VIM README_bg_BG.txt -e -c "set ff=unix" -c update -c q
+ :sys $VIM bg_BG.aff -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM bg_BG.dic -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM README_bg_BG.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('bg_BG.orig.aff'):
:copy bg_BG.aff bg_BG.orig.aff
@if not os.path.exists('bg_BG.orig.dic'):
diff -r 24100651daa9 runtime/spell/ca/main.aap
--- a/runtime/spell/ca/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/ca/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -36,8 +36,8 @@
:fetch ca_ES.zip
:sys $UNZIP ca_ES.zip
:delete ca_ES.zip
- :sys $VIM ca_ES.aff -c "set ff=unix" -c "update" -c q
- :sys $VIM ca_ES.dic -c "set ff=unix" -c "update" -c q
+ :sys $VIM ca_ES.aff -u NONE -c "set ff=unix" -c "update" -c q
+ :sys $VIM ca_ES.dic -u NONE -c "set ff=unix" -c "update" -c q
@if not os.path.exists('ca_ES.orig.aff'):
:copy ca_ES.aff ca_ES.orig.aff
@if not os.path.exists('ca_ES.orig.dic'):
diff -r 24100651daa9 runtime/spell/cy/main.aap
--- a/runtime/spell/cy/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/cy/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -36,9 +36,9 @@
:fetch cy_GB.zip
:sys $UNZIP cy_GB.zip
:delete cy_GB.zip
- :sys $VIM cy_GB.aff -e -c "set ff=unix" -c update -c q
- :sys $VIM cy_GB.dic -e -c "set ff=unix" -c update -c q
- :sys $VIM README_cy_GB.txt -e -c "set ff=unix" -c update -c q
+ :sys $VIM cy_GB.aff -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM cy_GB.dic -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM README_cy_GB.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('cy_GB.orig.aff'):
:copy cy_GB.aff cy_GB.orig.aff
@if not os.path.exists('cy_GB.orig.dic'):
diff -r 24100651daa9 runtime/spell/eo/main.aap
--- a/runtime/spell/eo/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/eo/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -22,7 +22,7 @@
../README_eo.txt : README_eo_l3.txt
:copy $source $target
# fix missing newline
- :sys $VIM $target -e -c "set ff=unix" -c wq
+ :sys $VIM -u NONE -e -c "set ff=unix" -c wq $target
#
# Fetching the files from OpenOffice.org.
diff -r 24100651daa9 runtime/spell/es/main.aap
--- a/runtime/spell/es/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/es/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -63,7 +63,7 @@
:print No copyright information for es_MX wordlist >! README_es_MX.txt
:sys $UNZIP $ZIPFILE_MX
:delete $ZIPFILE_MX
- :sys $VIM -e -c "set ff=unix | wq" es_MX.dic
+ :sys $VIM -u NONE -e -c "set ff=unix | wq" es_MX.dic
@if not os.path.exists('es_MX.orig.aff'):
:copy es_MX.aff es_MX.orig.aff
@if not os.path.exists('es_MX.orig.dic'):
diff -r 24100651daa9 runtime/spell/it/main.aap
--- a/runtime/spell/it/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/it/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -9,7 +9,7 @@
SPELLDIR = ..
FILES = it_IT.aff it_IT.dic
-all: $SPELLDIR/it.latin1.spl $SPELLDIR/it.utf-8.spl ../README_it.txt
+all: $SPELLDIR/it.utf-8.spl ../README_it.txt
$SPELLDIR/it.latin1.spl : $FILES
:sys env LANG=it_IT.ISO8859-1
diff -r 24100651daa9 runtime/spell/ku/main.aap
--- a/runtime/spell/ku/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/ku/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -36,9 +36,9 @@
:fetch ku_TR.zip
:sys $UNZIP ku_TR.zip
:delete ku_TR.zip
- :sys $VIM ku_TR.aff -e -c "set ff=unix" -c update -c q
- :sys $VIM ku_TR.dic -e -c "set ff=unix" -c update -c q
- :sys $VIM README_ku_TR.txt -e -c "set ff=unix" -c update -c q
+ :sys $VIM ku_TR.aff -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM ku_TR.dic -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM README_ku_TR.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('ku_TR.orig.aff'):
:copy ku_TR.aff ku_TR.orig.aff
@if not os.path.exists('ku_TR.orig.dic'):
diff -r 24100651daa9 runtime/spell/lv/main.aap
--- a/runtime/spell/lv/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/lv/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -39,7 +39,7 @@
:delete changelog.txt gpl.txt lin-lv_LV_add.sh win-lv_LV_add.bat
:sys $VIM lv_LV.aff -e -N -c "%s/\r//" -c update -c q
:sys $VIM lv_LV.dic -e -N -c "%s/\r//" -c update -c q
- :sys $VIM README_lv_LV.txt -e -c "set ff=unix" -c update -c q
+ :sys $VIM README_lv_LV.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('lv_LV.orig.aff'):
:copy lv_LV.aff lv_LV.orig.aff
@if not os.path.exists('lv_LV.orig.dic'):
diff -r 24100651daa9 runtime/spell/ms/main.aap
--- a/runtime/spell/ms/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/ms/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -36,8 +36,8 @@
:fetch ms_MY.zip
:sys $UNZIP ms_MY.zip
:delete ms_MY.zip
- :sys $VIM ms_MY.aff -e -c "set ff=unix" -c update -c q
- :sys $VIM ms_MY.dic -e -c "set ff=unix" -c update -c q
+ :sys $VIM ms_MY.aff -u NONE -e -c "set ff=unix" -c update -c q
+ :sys $VIM ms_MY.dic -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('ms_MY.orig.aff'):
:copy ms_MY.aff ms_MY.orig.aff
@if not os.path.exists('ms_MY.orig.dic'):
diff -r 24100651daa9 runtime/spell/pt/main.aap
--- a/runtime/spell/pt/main.aap Tue Mar 23 18:22:46 2010 +0100
+++ b/runtime/spell/pt/main.aap Sat Apr 17 20:26:24 2010 +0200
@@ -67,13 +67,13 @@
:fetch $BR_FNAME
:sys $UNZIP $BR_FNAME
:delete $BR_FNAME
- :sys $VIM README_pt_BR.TXT -e -c "set ff=unix" -c update -c q
+ :sys $VIM README_pt_BR.TXT -u NONE -e -c "set ff=unix" -c update -c q
:move README_pt_BR.TXT README_pt_BR.txt
# Vim seems to ignore the dots from the word list.
# Removing words with dot to avoid misbehaviour.
- :sys $VIM pt_BR.dic -e -c "set ff=unix" -c "/\./d" -c update -c q
- :sys $VIM pt_BR.aff -e -c "set ff=unix" -c update -c q
+ :sys $VIM pt_BR.dic -u NONE -e -c "set ff=unix" -c "/\./d" -c update -c q
+ :sys $VIM pt_BR.aff -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('pt_BR.orig.aff'):
:copy pt_BR.aff pt_BR.orig.aff
@if not os.path.exists('pt_BR.orig.dic'):