[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
autoreconf typo fix (mkdir without a umask arg)
From: |
Paul Eggert |
Subject: |
autoreconf typo fix (mkdir without a umask arg) |
Date: |
29 Dec 2003 18:27:26 -0800 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 |
I ran into the following problem with Autoconf 2.59 on Solaris 8:
$ autoreconf --verbose --install --force ...
Not enough arguments for mkdir at /opt/reb/bin/autoreconf line 490, near
"$aux_dir
or"
Execution of /opt/reb/bin/autoreconf aborted due to compilation errors.
and installed the following obvious little patch:
2003-12-29 Paul Eggert <address@hidden>
* bin/autoreconf.in (autoreconf_current_directory):
Fix typo: mkdir without umask arg.
Index: autoreconf.in
===================================================================
RCS file: /cvsroot/autoconf/autoconf/bin/autoreconf.in,v
retrieving revision 1.121
retrieving revision 1.122
diff -p -u -r1.121 -r1.122
--- autoreconf.in 12 Nov 2003 15:28:45 -0000 1.121
+++ autoreconf.in 30 Dec 2003 00:19:32 -0000 1.122
@@ -490,7 +490,7 @@ sub autoreconf_current_directory ()
if (defined $aux_dir && ! -d $aux_dir)
{
verb "$configure_ac: creating directory $aux_dir";
- mkdir $aux_dir
+ mkdir $aux_dir, 0755
or error "cannot create $aux_dir: $!";
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- autoreconf typo fix (mkdir without a umask arg),
Paul Eggert <=