summaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>2000-07-22 04:08:22 -0400
committerJason Merrill <jason@gcc.gnu.org>2000-07-22 04:08:22 -0400
commitd207ebef029642e5b93f7889b40ed5c47267f256 (patch)
tree352a946a9a021cf654cd9c81e8de516ff587ce85 /missing
parentDaily bump. (diff)
downloadgcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.gz
gcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.bz2
gcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.xz
merge with /cvs/src
From-SVN: r35188
Diffstat (limited to 'missing')
-rwxr-xr-xmissing26
1 files changed, 14 insertions, 12 deletions
diff --git a/missing b/missing
index cbe2b0ef0e3..7789652e877 100755
--- a/missing
+++ b/missing
@@ -82,15 +82,17 @@ WARNING: \`$1' is missing on your system. You should only need it if
82 you modified \`acconfig.h' or \`configure.in'. You might want 82 you modified \`acconfig.h' or \`configure.in'. You might want
83 to install the \`Autoconf' and \`GNU m4' packages. Grab them 83 to install the \`Autoconf' and \`GNU m4' packages. Grab them
84 from any GNU archive site." 84 from any GNU archive site."
85 files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER([^):]*:\([^)]*\)).*/\1/p' configure.in` 85 files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in`
86 if test -z "$files"; then 86 test -z "$files" && files="config.h"
87 files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^):]*\)).*/\1/p' configure.in` 87 touch_files=
88 test -z "$files" || files="$files.in" 88 for f in $files; do
89 else 89 case "$f" in
90 files=`echo "$files" | sed -e 's/:/ /g'` 90 *:*) touch_files="$touch_files "`echo "$f" |
91 fi 91 sed -e 's/^[^:]*://' -e 's/:.*//'`;;
92 test -z "$files" && files="config.h.in" 92 *) touch_files="$touch_files $f.in";;
93 touch $files 93 esac
94 done
95 touch $touch_files
94 ;; 96 ;;
95 97
96 automake) 98 automake)
@@ -99,9 +101,9 @@ WARNING: \`$1' is missing on your system. You should only need it if
99 you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. 101 you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'.
100 You might want to install the \`Automake' and \`Perl' packages. 102 You might want to install the \`Automake' and \`Perl' packages.
101 Grab them from any GNU archive site." 103 Grab them from any GNU archive site."
102 find . -type f -name Makefile.am -print \ 104 find . -type f -name Makefile.am -print |
103 | sed 's/^\(.*\).am$/touch \1.in/' \ 105 sed 's/\.am$/.in/' |
104 | sh 106 while read f; do touch "$f"; done
105 ;; 107 ;;
106 108
107 bison|yacc) 109 bison|yacc)