mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
configure: Account for umasks < 0022.
It seems recent Debian has a umask of 002, interestingly enough; and so the original check failed there. Thanks to luroh for reporting!
This commit is contained in:
parent
93930f335d
commit
ca20bd2e48
2
configure
vendored
2
configure
vendored
@ -543,7 +543,7 @@ if [ `umask` -gt 22 ]; then
|
||||
exit 1
|
||||
fi
|
||||
# ensure git checkout was not done with a restrictive umask
|
||||
if [ `stat -c '%a' $sourceDir/data/system/boot/SetupEnvironment` -ne 644 ]; then
|
||||
if [ `stat -c '%a' $sourceDir/data/system/boot/SetupEnvironment` -lt 644 ]; then
|
||||
echo "The source tree was cloned with a umask > 0022. It seems you"
|
||||
echo have already corrected your umask, but not re-checked-out the
|
||||
echo source tree. Try running:
|
||||
|
Loading…
Reference in New Issue
Block a user