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 8e0b688 commit ccf46b7
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 @@ -4588,6 +4588,7 @@ if test $MODE = "user_default" ; then
fi
MODE_X=$(( ( ~ $umask ) & 0777 ))
MODE_X=$(echo "ibase=10; obase=8; $MODE_X" | bc )
MODE_X=0$MODE_X
else
MODE_X=0$MODE
fi
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,7 @@ if test $MODE = "user_default" ; then
fi
MODE_X=$(( ( ~ $umask ) & 0777 ))
MODE_X=$(echo "ibase=10; obase=8; $MODE_X" | bc )
MODE_X=0$MODE_X
else
MODE_X=0$MODE
fi
Expand Down

0 comments on commit ccf46b7

Please sign in to comment.