Avoid conflicts with dash-W on case-insensitive filesystems.
+2013-09-23 Paul Smith <psmith@gnu.org>
+
+ * scripts/options/print-directory: Rename dash-w to
+ print-directory to avoid conflicts with dash-W on case-insensitive
+ filesystems.
+
2013-09-22 Paul Smith <psmith@gnu.org>
* scripts/features/se_implicit: Verify that order-only tokens
+++ /dev/null
-# -*-perl-*-
-
-$description = "Test the -w option to GNU make.";
-
-# Simple test without -w
-run_make_test(q!
-all: ; @echo hi
-!,
- "", "hi\n");
-
-# Simple test with -w
-run_make_test(undef, "-w",
- "#MAKE#: Entering directory '#PWD#'\nhi\n#MAKE#: Leaving directory '#PWD#'\n");
-
-# Test makefile rebuild to ensure no enter/leave
-run_make_test(q!
-include foo
-all: ;@:
-foo: ; touch foo
-!,
- "", "#MAKEFILE#:2: foo: No such file or directory\ntouch foo\n");
-unlink('foo');
-
-# Test makefile rebuild with -w
-run_make_test(q!
-include foo
-all: ;@:
-foo: ; touch foo
-!,
- "-w", "#MAKE#: Entering directory '#PWD#'\n#MAKEFILE#:2: foo: No such file or directory\ntouch foo\n#MAKE#: Leaving directory '#PWD#'\n");
-unlink('foo');
-
-1;
--- /dev/null
+# -*-perl-*-
+
+$description = "Test the -w option to GNU make.";
+
+# Simple test without -w
+run_make_test(q!
+all: ; @echo hi
+!,
+ "", "hi\n");
+
+# Simple test with -w
+run_make_test(undef, "-w",
+ "#MAKE#: Entering directory '#PWD#'\nhi\n#MAKE#: Leaving directory '#PWD#'\n");
+
+# Test makefile rebuild to ensure no enter/leave
+run_make_test(q!
+include foo
+all: ;@:
+foo: ; touch foo
+!,
+ "", "#MAKEFILE#:2: foo: No such file or directory\ntouch foo\n");
+unlink('foo');
+
+# Test makefile rebuild with -w
+run_make_test(q!
+include foo
+all: ;@:
+foo: ; touch foo
+!,
+ "-w", "#MAKE#: Entering directory '#PWD#'\n#MAKEFILE#:2: foo: No such file or directory\ntouch foo\n#MAKE#: Leaving directory '#PWD#'\n");
+unlink('foo');
+
+1;