fix install.sh on DECstation; handle lack of c++ on h8[35]00 for libio
authorDavid D. Zuhn <zoo@cygnus>
Fri, 20 Aug 1993 00:37:33 +0000 (00:37 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Fri, 20 Aug 1993 00:37:33 +0000 (00:37 +0000)
configure.in
install.sh

index e7ffeda5a0ee3d07a46e53fbf3a82f29286f36eb..19f16f458d15af4181d9cacb49f2a1098ebd4bed 100644 (file)
@@ -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
index 6f4be1b22b29a5468667a837aff2fd8f22d7bb85..182e240a302f94c051c9054a1151744e331996c1 100755 (executable)
@@ -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.