summaryrefslogtreecommitdiff
path: root/tests/scripts/options/dash-k
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/options/dash-k')
-rw-r--r--tests/scripts/options/dash-k13
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/scripts/options/dash-k b/tests/scripts/options/dash-k
index fec630c3..05db28ac 100644
--- a/tests/scripts/options/dash-k
+++ b/tests/scripts/options/dash-k
@@ -16,7 +16,7 @@ open(MAKEFILE,"> $makefile");
# The Contents of the MAKEFILE ...
print MAKEFILE <<EOF;
-VPATH = $workdir
+VPATH = work
edit: main.o kbd.o commands.o display.o
\t\@echo cc -o edit main.o kbd.o commands.o display.o
@@ -38,11 +38,12 @@ EOF
close(MAKEFILE);
-@files_to_touch = ("$workdir${pathsep}main.c","$workdir${pathsep}defs.h",
- "$workdir${pathsep}command.h",
- "$workdir${pathsep}commands.c","$workdir${pathsep}display.c",
- "$workdir${pathsep}buffer.h",
- "$workdir${pathsep}command.c");
+mkdir('work');
+@files_to_touch = ("work${pathsep}main.c","work${pathsep}defs.h",
+ "work${pathsep}command.h",
+ "work${pathsep}commands.c","work${pathsep}display.c",
+ "work${pathsep}buffer.h",
+ "work${pathsep}command.c");
&touch(@files_to_touch);