1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Bastian Germann
Description: Prevent libtool fail with absolute paths
---
--- a/libtool 2022-09-30 13:42:48.312629209 +0200
+++ b/libtool 2022-09-30 13:43:03.464835750 +0200
@@ -74,22 +74,22 @@
build_os=freebsd8.0
# A sed program that does not truncate output.
-SED="/usr/bin/sed"
+SED="sed"
# Sed that helps us avoid accidentally triggering echo(1) options like -n.
Xsed="$SED -e 1s/^X//"
# A grep program that handles long lines.
-GREP="/usr/bin/grep"
+GREP="grep"
# An ERE matcher.
-EGREP="/usr/bin/grep -E"
+EGREP="grep -E"
# A literal string matcher.
-FGREP="/usr/bin/grep -F"
+FGREP="grep -F"
# A BSD- or MS-compatible name lister.
-NM="/usr/bin/nm -B"
+NM="nm -B"
# Whether we need soft or hard links.
LN_S="ln -s"
|