diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-07-22 18:51:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-07-22 18:51:59 +0000 |
commit | e59df24357294fad256b9ada4c24a5538070546e (patch) | |
tree | 10bda1a65596981bc951fb6fa7cd51b17319aa85 | |
parent | 25496d0ca1863768457870eeb2ce08da35830b0e (diff) | |
download | gdb-e59df24357294fad256b9ada4c24a5538070546e.zip gdb-e59df24357294fad256b9ada4c24a5538070546e.tar.gz gdb-e59df24357294fad256b9ada4c24a5538070546e.tar.bz2 |
Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
* configure: Change Makefile.tem2 to Makefile.tm2.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | configure | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE> + + * configure: Change Makefile.tem2 to Makefile.tm2. + Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com> * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep. @@ -1117,12 +1117,12 @@ EOF # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS, # remove any form feeds. if [ -z "${subdirs}" ]; then - rm -f ${subdir}/Makefile.tem2 + rm -f ${subdir}/Makefile.tm2 sed -e "s:^SUBDIRS[ ]*=.*$:SUBDIRS = ${configdirs}:" \ -e "s:^NONSUBDIRS[ ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \ - ${subdir}/Makefile.tem > ${subdir}/Makefile.tem2 + ${subdir}/Makefile.tem > ${subdir}/Makefile.tm2 rm -f ${subdir}/Makefile.tem - mv ${subdir}/Makefile.tem2 ${subdir}/Makefile.tem + mv ${subdir}/Makefile.tm2 ${subdir}/Makefile.tem fi sed -e "s|^prefix[ ]*=.*$|prefix = ${prefix}|" \ -e "s|^exec_prefix[ ]*=.*$|exec_prefix = ${exec_prefix}|" \ |