1
0
mirror of https://github.com/mirror/make.git synced 2025-03-13 19:30:41 +08:00
make/tests/scripts/options/dash-e

16 lines
284 B
Plaintext
Raw Normal View History

# -*-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;