Skip to content

Commit

Permalink
Make afs 'false' rather than 'undef' on VMS
Browse files Browse the repository at this point in the history
Unlike nearly every other Configure variable, the absence of afs
is denoted by a false value rather than undef but we had this
backwards in configure.com. t/op/require_errors.t has been failing
because it checks for equal to 'true' rather than definedness.
  • Loading branch information
craigberry committed Aug 4, 2024
1 parent eb62f8d commit 42365d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.com
Original file line number Diff line number Diff line change
Expand Up @@ -5826,7 +5826,7 @@ $ WC "PERL_CONFIG_SH='true'"
$ WC "_a='" + lib_ext + "'"
$ WC "_exe='" + exe_ext + "'"
$ WC "_o='" + obj_ext + "'"
$ WC "afs='undef'"
$ WC "afs='false'"
$ WC "afsroot='/afs'"
$ WC "alignbytes='" + alignbytes + "'"
$ WC "aphostname='write sys$output f$edit(f$getsyi(\""SCSNODE\""),\""TRIM,LOWERCASE\"")'"
Expand Down

0 comments on commit 42365d0

Please sign in to comment.