Skip to content

Commit d6be2c1

Browse files
author
Matthias Koeppe
committed
More verbosity
1 parent 7783fa8 commit d6be2c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,10 +545,10 @@ AC_CONFIG_COMMANDS(mkdirs,
545545
mkdir -p "$SAGE_BUILD_DIR" || AC_MSG_ERROR([could not create $SAGE_BUILD_DIR])
546546
rm -f "$SAGE_BUILD_DIR"/conftest
547547
touch "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([could not create a file in $SAGE_BUILD_DIR])
548-
chmod -w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([could not set file permissions in $SAGE_BUILD_DIR])
549-
test -w "$SAGE_BUILD_DIR"/conftest && AC_MSG_ERROR([file permissions did not persist in $SAGE_BUILD_DIR])
550-
chmod +w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([could not set file permissions in $SAGE_BUILD_DIR])
551-
test -w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([file permissions did not persist in $SAGE_BUILD_DIR])
548+
chmod -w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([could not set file permissions -w in $SAGE_BUILD_DIR])
549+
test -w "$SAGE_BUILD_DIR"/conftest && AC_MSG_ERROR([file permissions -w did not persist in $SAGE_BUILD_DIR])
550+
chmod +w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([could not set file permissions +w in $SAGE_BUILD_DIR])
551+
test -w "$SAGE_BUILD_DIR"/conftest || AC_MSG_ERROR([file permissions +w did not persist in $SAGE_BUILD_DIR])
552552
rm -f "$SAGE_BUILD_DIR"/conftest
553553
],
554554
[

0 commit comments

Comments
 (0)