[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Autoconf 2.57g is released
From: |
Akim Demaille |
Subject: |
Re: Autoconf 2.57g is released |
Date: |
Mon, 27 Oct 2003 12:27:32 +0100 |
User-agent: |
Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) |
> I encountered the following problems on autoconf 2.57g on HP-UX 11.00:
> 1. On "make install", config/install-sh did not have execute
> permission. I added it then install went ok.
Thanks, I installed the following.
Index: ChangeLog
from Akim Demaille <address@hidden>
* Makefile.cfg (executable-update): New.
(local_updates): Call it.
Index: Makefile.cfg
===================================================================
RCS file: /cvsroot/autoconf/autoconf/Makefile.cfg,v
retrieving revision 1.3
diff -u -u -r1.3 Makefile.cfg
--- Makefile.cfg 22 Aug 2003 13:57:21 -0000 1.3
+++ Makefile.cfg 27 Oct 2003 11:24:21 -0000
@@ -47,7 +47,13 @@
$(srcdir)/config/mkinstalldirs
# autom4te-update is defined in Makefile.am.
-local_updates = wget-update cvs-update autom4te-update
+local_updates = wget-update cvs-update autom4te-update executable-update
+
+.PHONY: executable-update
+executable-update:
+ chmod +x $(cvs_files) \
+ $(srcdir)/config/config.guess \
+ $(srcdir)/config/config.sub
# Tests not to run.
local-checks-to-skip ?= \
- Re: Autoconf 2.57g is released,
Akim Demaille <=