summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/variables/CURDIR
diff options
context:
space:
mode:
Diffstat (limited to 'make/make-3.81/tests/scripts/variables/CURDIR')
-rw-r--r--make/make-3.81/tests/scripts/variables/CURDIR20
1 files changed, 0 insertions, 20 deletions
diff --git a/make/make-3.81/tests/scripts/variables/CURDIR b/make/make-3.81/tests/scripts/variables/CURDIR
deleted file mode 100644
index ee7cacb..0000000
--- a/make/make-3.81/tests/scripts/variables/CURDIR
+++ /dev/null
@@ -1,20 +0,0 @@
-# -*-perl-*-
-
-$description = "This tests the CURDIR varaible.";
-
-$details = "Echo CURDIR both with and without -C. Also ensure overrides work.";
-
-open(MAKEFILE,"> $makefile");
-print MAKEFILE "all: ; \@echo \$(CURDIR)\n";
-close(MAKEFILE);
-
-
-# TEST #1
-# -------
-
-&run_make_with_options($makefile,"",&get_logfile);
-$answer = "$pwd\n";
-&compare_output($answer,&get_logfile(1));
-
-
-1;