[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: "missing" is not executable
From: |
Akim Demaille |
Subject: |
Re: "missing" is not executable |
Date: |
13 Oct 2000 09:54:38 +0200 |
User-agent: |
Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) |
| Hello!
| The file "missing" on CVS is not executable. "make dist" doesn't make it
| executable. People who don't have e.g. makeinfo will be out of luck.
|
| Possible solutions:
|
| 1) Ask address@hidden to make it executable (IMO should be done
| anyways, "mdate-sh" too).
|
| 2) Add a hook to the "dist" target to make "missing" executable.
|
| 3) Modify m4/missing.m4 (not that deep as the current Automake does), e.g.
|
| --- missing.m4 Thu Oct 12 17:17:50 2000
| +++ missing.m4 Thu Oct 12 17:29:35 2000
| @@ -12,7 +12,7 @@
| $1=$2
| AC_MSG_RESULT(found)
| else
| - $1="$3/missing $2"
| + $1="$SHELL $3/missing $2"
| AC_MSG_RESULT(missing)
| fi
| AC_SUBST($1)])
I favor 1 + 3.