Skip to content

Commit 5bba64c

Browse files
committed
Merge pull request #2711 from chapel-lang/master
gen_release ''s $ENV{foobar} -> Not a syntax error, but a runtime error [ Reviewed by @ronawho & @benharsh ]
2 parents 6c335a6 + 832f5e0 commit 5bba64c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/buildRelease/gen_release

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ chdir "$archive_dir";
165165
print "Building the docs...\n";
166166
# Set CHPL_COMM to none to avoid issues with gasnet generated makefiles not
167167
# existing because we haven't built the third-party libs
168-
$ENV{CHPL_HOME} = "$archive_dir";
169-
$ENV{CHPL_COMM} = "none";
168+
$ENV{'CHPL_HOME'} = "$archive_dir";
169+
$ENV{'CHPL_COMM'} = "none";
170170
print "CHPL_HOME is set to: $ENV{'CHPL_HOME'}\n";
171171

172172
SystemOrDie("make -j docs");

0 commit comments

Comments
 (0)