Changeset 554 in kBuild
- Timestamp:
- Sep 27, 2006 6:57:05 PM (19 years ago)
- Location:
- trunk/src/gmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/Makefile.kmk
r552 r554 295 295 # Shell execution tests. 296 296 # 297 test_shell: test_shell_quoting test_shell_ newline297 test_shell: test_shell_quoting test_shell_double_quoting test_shell_newline 298 298 299 299 # shell double and single quoting check (was busted on windows in 3.81). … … 306 306 ( echo " #define PWD \"`pwd`\""; ) 307 307 308 test_shell_double_quoting: 309 $(ECHO_EXT) "foo foo foo" | $(SED_EXT) -e \ 310 "s/foo/$@/" -e \ 311 "s/foo/works/" \ 312 -e "s/foo/\!/" 313 314 test_shell_double_quoting2: 315 $(ECHO_EXT) "foo foo foo" | $(SED_EXT) -e \ 316 "s/foo/$@/" -e \ 317 "s/foo/works/" \ 318 -e\ 319 "s/foo/\!/" 320 308 321 # when using batch mode shell, the newline got escaped twice and spoiling everything. 309 322 test_shell_newline: -
trunk/src/gmake/config.h.W32
r526 r554 493 493 extern int my_stat(const char *, struct stat *); 494 494 #define stat(_path, _st) my_stat(_path, _st) 495 496 /* cygwin sucks to much in one end or the other. */ 497 #define BATCH_MODE_ONLY_SHELL 498
Note:
See TracChangeset
for help on using the changeset viewer.