Re: [PATCH] Typos in makefiles

2013-12-31 Fir de Conversatie Bram Moolenaar

ZyX wrote:

> I found some problems in makefiles:
> 
> src/Makefile contains references to test104, test105, test106 and test107 
> which do not exist.

That's OK, for tests added later.

> src/testdir/Make_ming.mak contains test100out in SCRIPTS while it should 
> be test100.out (note the dot).

I'll include that fix, thanks.

-- 
>From "know your smileys":
 <<<:-{Worf (Never smiles anyways, so he's a bad smiley)

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[PATCH] Typos in makefiles

2013-12-15 Fir de Conversatie ZyX
I found some problems in makefiles:

src/Makefile contains references to test104, test105, test106 and test107 
which do not exist.
src/testdir/Make_ming.mak contains test100out in SCRIPTS while it should be 
test100.out (note the dot).

They should be fixed with the following patch:

diff -r 2f856c7c1d43 src/Makefile
--- a/src/Makefile  Sun Dec 15 10:02:33 2013 +0100
+++ b/src/Makefile  Sun Dec 15 14:49:18 2013 +0400
@@ -1883,7 +1883,7 @@
test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
-   test100 test101 test102 test103 test104 test105 test106 test107:
+   test100 test101 test102 test103:
cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out 
VIMPROG=../$(VIMTARGET)
 
 testclean:
diff -r 2f856c7c1d43 src/testdir/Make_ming.mak
--- a/src/testdir/Make_ming.mak Sun Dec 15 10:02:33 2013 +0100
+++ b/src/testdir/Make_ming.mak Sun Dec 15 14:49:18 2013 +0400
@@ -53,7 +53,7 @@
test84.out test85.out test86.out test87.out test88.out \
test89.out test90.out test91.out test92.out test93.out \
test94.out test95.out test96.out test98.out test99.out \
-   test100out test101.out test102.out test103.out
+   test100.out test101.out test102.out test103.out
 
 SCRIPTS32 =test50.out test70.out
 

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
diff -crN vim-upstream.2f856c7c1d43/src/Makefile vim-upstream/src/Makefile
*** vim-upstream.2f856c7c1d43/src/Makefile	2013-12-15 14:49:35.207315211 +0400
--- vim-upstream/src/Makefile	2013-12-15 14:49:35.208315211 +0400
***
*** 1883,1889 
  	test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
  	test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
  	test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
! 	test100 test101 test102 test103 test104 test105 test106 test107:
  	cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET)
  
  testclean:
--- 1883,1889 
  	test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
  	test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
  	test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
! 	test100 test101 test102 test103:
  	cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET)
  
  testclean:
diff -crN vim-upstream.2f856c7c1d43/src/testdir/Make_ming.mak vim-upstream/src/testdir/Make_ming.mak
*** vim-upstream.2f856c7c1d43/src/testdir/Make_ming.mak	2013-12-15 14:49:35.207315211 +0400
--- vim-upstream/src/testdir/Make_ming.mak	2013-12-15 14:49:35.208315211 +0400
***
*** 53,59 
  		test84.out test85.out test86.out test87.out test88.out \
  		test89.out test90.out test91.out test92.out test93.out \
  		test94.out test95.out test96.out test98.out test99.out \
! 		test100out test101.out test102.out test103.out
  
  SCRIPTS32 =	test50.out test70.out
  
--- 53,59 
  		test84.out test85.out test86.out test87.out test88.out \
  		test89.out test90.out test91.out test92.out test93.out \
  		test94.out test95.out test96.out test98.out test99.out \
! 		test100.out test101.out test102.out test103.out
  
  SCRIPTS32 =	test50.out test70.out