From 1cdfdb8b6ca37e51631b1ca44cf43636929bfaa9 Mon Sep 17 00:00:00 2001 From: arekm Date: Sun, 28 Mar 2004 00:49:54 +0000 Subject: [PATCH] When fixing permissions do u+w, too (fixes badly packaged tarballs) CVS patchset: 7197 CVS date: 2004/03/28 00:49:54 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 71d532e25..435b7cbb3 100644 --- a/configure.ac +++ b/configure.ac @@ -165,10 +165,10 @@ a=`ls -l foo.chmodtest | awk '{print $1}'` rm -f foo.chmodtest if test "$a" = "-rwxr-xr-x"; then AC_MSG_RESULT(yes) - FIXPERMS=a+rX,g-w,o-w + FIXPERMS=a+rX,u+w,g-w,o-w else AC_MSG_RESULT(no (tell your OS vendor about GNU fileutils)) - FIXPERMS=a+r,g-w,o-w + FIXPERMS=a+r,u+w,g-w,o-w fi AC_SUBST(FIXPERMS)