diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-07-22 04:08:22 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-07-22 04:08:22 -0400 |
commit | d207ebef029642e5b93f7889b40ed5c47267f256 (patch) | |
tree | 352a946a9a021cf654cd9c81e8de516ff587ce85 /missing | |
parent | Daily bump. (diff) | |
download | gcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.gz gcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.bz2 gcc-d207ebef029642e5b93f7889b40ed5c47267f256.tar.xz |
merge with /cvs/src
From-SVN: r35188
Diffstat (limited to 'missing')
-rwxr-xr-x | missing | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -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) |