summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1993-08-20 00:37:33 +0000
committerDavid D. Zuhn <zoo@cygnus>1993-08-20 00:37:33 +0000
commit26fac605fb387ffffe8da7cfee66a1aa4758c15c (patch)
tree1f5896dca5956885a9bc55ceb21b4c93a37e11e0 /install.sh
parent62db94cb844b464c4b8fff08524b3a909f5d9987 (diff)
downloadbinutils-gdb-26fac605fb387ffffe8da7cfee66a1aa4758c15c.tar.gz
fix install.sh on DECstation; handle lack of c++ on h8[35]00 for libio
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 6f4be1b22b2..182e240a302 100755
--- a/install.sh
+++ b/install.sh
@@ -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.