summaryrefslogtreecommitdiff
path: root/tests/scripts/options/dash-e
blob: 944c39dfd525eaf27e7e80eb65b39312b7197266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#                                                                    -*-perl-*-

$description = "The following test creates a makefile to ...";

$details = "";

$ENV{GOOGLE} = 'boggle';

run_make_test(q!
GOOGLE = bazzle
all:; @echo "$(GOOGLE)"
!,
              '-e', "boggle\n");

1;