diff options
author | K. Richard Pixley <rich@cygnus> | 1991-05-27 20:54:50 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-05-27 20:54:50 +0000 |
commit | 6c18e39366ff442912ba8ae828f73ad2d7a7e4d4 (patch) | |
tree | 5eb111ec14e45aba325d9c05a1f8a6f49ece0eff /readline | |
parent | 1fb48a6c68bff7917008d44eefd15affc0df346b (diff) | |
download | gdb-6c18e39366ff442912ba8ae828f73ad2d7a7e4d4.zip gdb-6c18e39366ff442912ba8ae828f73ad2d7a7e4d4.tar.gz gdb-6c18e39366ff442912ba8ae828f73ad2d7a7e4d4.tar.bz2 |
fixed a bug in multiple targets
Diffstat (limited to 'readline')
-rwxr-xr-x | readline/configure | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/readline/configure b/readline/configure index 23efc6e..1eea1d0 100755 --- a/readline/configure +++ b/readline/configure @@ -3,6 +3,9 @@ # configure.in and a configure template. configdirs= +# the debugger. +#set -x + #!/bin/sh # Configuration script template @@ -279,6 +282,8 @@ for host in ${hosts} ; do defaulttargets=true fi + host_makefile_frag=config/hmake-${host} + #### configure.in per-host parts come in here. ## end of per-host part. @@ -287,9 +292,11 @@ for host in ${hosts} ; do for target in ${targets} ; do if [ -n "${verbose}" ] ; then - echo " "target=\"${target}\" + echo host \= \"${host}\", target \= \"${target}\". fi + target_makefile_frag=config/tmake-${target} + #### configure.in per-target parts come in here. ## end of per-target part. @@ -428,14 +435,6 @@ for host in ${hosts} ; do cat ${srcdir}/Makefile.in >> Makefile # and shake thoroughly. - if [ -z "${host_makefile_frag}" ] ; then - host_makefile_frag=config/hmake-${host} - fi - - if [ -z "${target_makefile_frag}" ] ; then - target_makefile_frag=config/tmake-${target} - fi - # Conditionalize the makefile for this host. if [ -f ${srcdir}/${host_makefile_frag} ] ; then sed -e "/^####/ r ${srcdir}/${host_makefile_frag}" Makefile > Makefile.tem @@ -599,8 +598,14 @@ exit 0 # # $Log$ -# Revision 1.1 1991/05/21 19:55:06 rich -# Initial revision +# Revision 1.2 1991/05/27 20:54:50 rich +# fixed a bug in multiple targets +# +# Revision 1.14 1991/05/22 01:44:04 rich +# remove gdb until config issues resolve. +# +# Revision 1.13 1991/05/19 08:00:09 rich +# Added gdb. # # Revision 1.12 1991/05/19 00:32:13 rich # Changes to deal with missing subdirs gracefully, and changes dictated |