diff options
author | David D. Zuhn <zoo@cygnus> | 1993-08-20 00:37:33 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1993-08-20 00:37:33 +0000 |
commit | 26fac605fb387ffffe8da7cfee66a1aa4758c15c (patch) | |
tree | 1f5896dca5956885a9bc55ceb21b4c93a37e11e0 | |
parent | 62db94cb844b464c4b8fff08524b3a909f5d9987 (diff) | |
download | gdb-26fac605fb387ffffe8da7cfee66a1aa4758c15c.zip gdb-26fac605fb387ffffe8da7cfee66a1aa4758c15c.tar.gz gdb-26fac605fb387ffffe8da7cfee66a1aa4758c15c.tar.bz2 |
fix install.sh on DECstation; handle lack of c++ on h8[35]00 for libio
-rw-r--r-- | configure.in | 6 | ||||
-rwxr-xr-x | install.sh | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in index e7ffeda..19f16f4 100644 --- a/configure.in +++ b/configure.in @@ -171,16 +171,16 @@ case "${target}" in alpha-dec-osf1) configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'` configdirs=`echo ${configdirs} | sed -e 's/gdb//;s/emacs//;s/fileutils//'` - configdirs=`echo ${configdirs} | sed -e 's/grep//;s/libg++//'` + configdirs=`echo ${configdirs} | sed -e 's/grep//;s/libg++//;s/libio//'` ;; h8300*-*-*) - configdirs=`echo ${configdirs} | sed -e 's/libg++//'` + configdirs=`echo ${configdirs} | sed -e 's/libg++//;s/libio//'` ## start-sanitize-chill configdirs=`echo ${configdirs} | sed -e 's/chillrt//'` ## end-sanitize-chill ;; h8500-*-*) - configdirs=`echo ${configdirs} | sed -e 's/libg++//'` + configdirs=`echo ${configdirs} | sed -e 's/libg++//;s/libio//'` ## start-sanitize-chill configdirs=`echo ${configdirs} | sed -e 's/chillrt//'` ## end-sanitize-chill @@ -191,10 +191,10 @@ trap "rm -f ${dsttmp}" 0 && # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. -if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi && -if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi && -if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi && -if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi && +if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true ; fi && +if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true ; fi && +if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true ; fi && +if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true ; fi && # Now rename the file to the real destination. |