about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-07-22 10:55:44 +0000
committerRoland McGrath <roland@gnu.org>1995-07-22 10:55:44 +0000
commit587dbc6fe800892bbeeac210f5c9079a3ef70d8c (patch)
treeeed43a4478b1664aae57e898f2f766d559d04ad2 /Makefile
parent439d1d4560aa3e261c065c43e3995779809b4cb2 (diff)
downloadglibc-587dbc6fe800892bbeeac210f5c9079a3ef70d8c.tar.gz
glibc-587dbc6fe800892bbeeac210f5c9079a3ef70d8c.tar.xz
glibc-587dbc6fe800892bbeeac210f5c9079a3ef70d8c.zip
* Makefile (autoconf-it): Make it executable and unwritable.
	* configure.in (sysnames): Under --enable-debug-configure, spew
 	potential sysnames.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e85be51cc0..139d20b361 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,9 @@ endif
 all: lib others
 
 define autoconf-it
+@-rm -f $@.new
 autoconf $(ACFLAGS) $< > $@.new
+chmod a-w,a+x $@.new
 mv -f $@.new $@
 test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
 endef