diff options
author | Paul Smith <psmith@gnu.org> | 2012-03-04 00:24:20 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-03-04 00:24:20 +0000 |
commit | 23c2b99e9d23e726ede9442728272616e66d416f (patch) | |
tree | 80b69e1fde31e8c4a39ee43b57546a06f77de353 /tests/scripts/options/dash-k | |
parent | 405c89ba1e33e013f7e582e28f969fc3f39b9b2c (diff) | |
download | gunmake-23c2b99e9d23e726ede9442728272616e66d416f.tar.gz |
Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.
Fixes Savannah bug #34530.
Diffstat (limited to 'tests/scripts/options/dash-k')
-rw-r--r-- | tests/scripts/options/dash-k | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/scripts/options/dash-k b/tests/scripts/options/dash-k index 40d9b97..e784e0d 100644 --- a/tests/scripts/options/dash-k +++ b/tests/scripts/options/dash-k @@ -57,10 +57,10 @@ else { # Create the answer to what should be produced by this Makefile $answer = "cc -c main.c -$make_name: *** No rule to make target `kbd.c', needed by `kbd.o'. +$make_name: *** No rule to make target 'kbd.c', needed by 'kbd.o'. cc -c commands.c cc -c display.c -$make_name: Target `edit' not remade because of errors.\n"; +$make_name: Target 'edit' not remade because of errors.\n"; # COMPARE RESULTS @@ -92,9 +92,9 @@ close(MAKEFILE); &run_make_with_options($makefile2, "-k", &get_logfile, $error_code); $answer = "exit 1 -$makefile2:9: recipe for target `foo.o' failed +$makefile2:9: recipe for target 'foo.o' failed $make_name: *** [foo.o] Error 1 -$make_name: Target `all' not remade because of errors.\n"; +$make_name: Target 'all' not remade because of errors.\n"; &compare_output($answer, &get_logfile(1)); @@ -107,8 +107,8 @@ ifile: no-such-file; @false ', '-k', "#MAKEFILE#:2: ifile: No such file or directory -#MAKE#: *** No rule to make target `no-such-file', needed by `ifile'. -#MAKE#: Failed to remake makefile `ifile'. +#MAKE#: *** No rule to make target 'no-such-file', needed by 'ifile'. +#MAKE#: Failed to remake makefile 'ifile'. hi\n", 512); |