Author: eugen
Date: Fri Jul 10 00:45:34 2020
New Revision: 363067
URL: https://svnweb.freebsd.org/changeset/base/363067

Log:
  install(1): correction after r363064
  
  Make it not break if STRIPBIN points to strip version without -o support.
  In that case, perform extra copy just like before r363064.
  
  MFC after:    1 month
  X-MFC-With:   363064

Modified:
  head/usr.bin/xinstall/xinstall.c

Modified: head/usr.bin/xinstall/xinstall.c
==============================================================================
--- head/usr.bin/xinstall/xinstall.c    Fri Jul 10 00:45:16 2020        
(r363066)
+++ head/usr.bin/xinstall/xinstall.c    Fri Jul 10 00:45:34 2020        
(r363067)
@@ -863,7 +863,7 @@ install(const char *from_name, const char *to_name, u_
                        if (dostrip)
                            stripped = strip(tempcopy ? tempfile : to_name,
                                             from_name, &digestresult);
-                       else
+                       if (!stripped)
                            digestresult = copy(from_fd, from_name, to_fd,
                                tempcopy ? tempfile : to_name, from_sb.st_size);
                }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to