Mercurial > emacs
annotate lisp/toolbar/widen.xpm @ 56512:d341e83af4f2
Removed the various "echo." lines from lisp\makefile.w32-in and nt\makefile.w32-in.
They caused mingw32-make.exe bootstrap to fail with the following error if cmd.exe
was being used as the shell:
"process_begin: CreateProcess((null), echo., ...) failed."
I replaced the "@echo." lines in nt\makefile.w32-in with "@echo ." This writes a .
to the screen but that is far more desirable than make bootstrap failing.
I replaced the "echo. ..." line in lisp\makefile.w32-in with "echo ;;; ...". This
writes an extra comment line to loaddefs.el. Again this is far more desirable than
make bootstrap failing.
NOTE: I am using cmd.exe as my shell when building Emacs with MinGW instead of
the sh.exe that comes with msys because when I use sh.exe as my shell, loaddefs.el
does not get properly generated and I get various auto load errors.
author | Ben Key <bkey1@tampabay.rr.com> |
---|---|
date | Sat, 24 Jul 2004 04:52:27 +0000 |
parents | 2568d5a27317 |
children |
rev | line source |
---|---|
47730 | 1 /* XPM */ |
2 static char * widen_xpm[] = { | |
3 /* columns rows colors chars-per-pixel */ | |
4 "24 24 3 1", | |
5 " c None", | |
6 ". c #8d4d97577838", | |
7 "X c black", | |
8 /* pixels */ | |
9 " ", | |
10 " ", | |
11 " ", | |
12 " . . ", | |
13 " . . ", | |
14 " . . ", | |
15 " . . ", | |
16 " . . ", | |
17 " . XX XX . ", | |
18 " . XX XX . ", | |
19 " . XX XX . ", | |
20 " .XXXXXXXX XXXXXXXX. ", | |
21 " .XXXXXXXX XXXXXXXX. ", | |
22 " . XX XX . ", | |
23 " . XX XX . ", | |
24 " . XX XX . ", | |
25 " . . ", | |
26 " . . ", | |
27 " . . ", | |
28 " . . ", | |
29 " . . ", | |
30 " ", | |
31 " ", | |
32 " "}; |