Skip to content

Commit

Permalink
Issue #585: fix bug with --with-mode=MODE code in configure.ac
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLay committed Jul 31, 2022
1 parent ccf46b7 commit 5536e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4594,6 +4594,7 @@ else
fi
MODE_R=$(( 0666 & $MODE_X ))
MODE_R=$(echo "ibase=10; obase=8; $MODE_R" | bc )
MODE_R=0$MODE_R
echo MODE_X: $MODE_X
echo MODE_R: $MODE_R
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,7 @@ else
fi
MODE_R=$(( 0666 & $MODE_X ))
MODE_R=$(echo "ibase=10; obase=8; $MODE_R" | bc )
MODE_R=0$MODE_R
echo MODE_X: $MODE_X
echo MODE_R: $MODE_R

Expand Down

0 comments on commit 5536e55

Please sign in to comment.