[w3m-dev 04044] Re: w3m 0.5
Fumitoshi UKAI <[email protected]>
| Newsgroups | gmane.comp.web.w3m.devel |
|---|---|
| Organization | Debian JP Project |
| Message-ID | <[email protected]> |
At Sun, 21 Mar 2004 04:28:46 +0900, Hiroshi Fujishima wrote: > > Fumitoshi UKAI <[email protected]> writes: > > > w3m 0.5 > > w3m cvs currentbug > > w3m 0.5 > > release criticalbug? > > Solaris make install > > gmake[1]: Leaving directory `/var/tmp/w3m/scripts' > for subdir in ; \ > do \ > (cd $subdir && gmake install); \ > done > /bin/ksh: syntax error at line 1 : `;' unexpected > gmake: *** [install-po] Error 2 fixed Index: Makefile.in =================================================================== RCS file: /cvsroot/w3m/w3m/Makefile.in,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- Makefile.in 8 Dec 2003 16:15:18 -0000 1.30 +++ Makefile.in 21 Mar 2004 14:03:41 -0000 1.31 @@ -227,7 +227,7 @@ done install-po: - for subdir in $(NLSTARGET); \ + NLSTARGET="$(NLSTARGET)"; for subdir in $$NLSTARGET; \ do \ (cd $$subdir && $(MAKE) install); \ done --