File: 11_no_absolute_sed_path.patch

package info (click to toggle)
vflib3 3.7.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,688 kB
  • sloc: ansic: 37,305; sh: 11,975; makefile: 915; lisp: 123; perl: 109; awk: 43
file content (33 lines) | stat: -rw-r--r-- 752 bytes parent folder | download | duplicates (2)
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"