Guest User

Untitled

a guest
Oct 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. --- /usr/lib64/misc/am-wrapper.sh 2012-04-21 23:48:14.000000000 -0400
  2. +++ /usr/lib64/misc/am-wrapper.sh.new 2012-06-15 11:40:41.000000000 -0400
  3. @@ -99,6 +99,7 @@
  4. "\tI tried these versions: ${vers}\n" \
  5. "\tWith a base name of '${full_argv0}'."
  6. fi
  7. +binary_defaultifmissing=$binary
  8.  
  9. #
  10. # Check the WANT_AUTOMAKE setting. We accept a whitespace delimited
  11. @@ -175,8 +176,9 @@
  12. # Now try to run the binary
  13. #
  14. if [ ! -x "${binary}" ] ; then
  15. - err "$binary is missing or not executable.\n" \
  16. - "\tPlease try emerging the correct version of automake."
  17. + warn "$binary is missing or not executable.\n" \
  18. + "\tusing $binary_defaultifmissing instead."
  19. + binary=$binary_defaultifmissing
  20. fi
  21.  
  22. exec "$binary" "$@"
Add Comment
Please, Sign In to add comment