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