File: gawk-path-fix.patch

package info (click to toggle)
smstools 3.1.21-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,900 kB
  • sloc: ansic: 18,785; sh: 1,196; php: 115; makefile: 42; awk: 17
file content (22 lines) | stat: -rw-r--r-- 973 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Description: fix path to gawk
Author: Thorsten Alteholz <debian@alteholz.de>
Index: smstools-3.1.21/scripts/hex2bin
===================================================================
--- smstools-3.1.21.orig/scripts/hex2bin	2017-10-13 14:01:27.390230987 +0200
+++ smstools-3.1.21/scripts/hex2bin	2017-10-13 14:01:27.382230709 +0200
@@ -1,4 +1,4 @@
-#!/bin/gawk -f
+#!/usr/bin/gawk -f
 
 # This script reads a hex-dump and converts it to a binary file.
 # The hex-dump must contain one or more hexadecimal numbers separated
Index: smstools-3.1.21/scripts/hex2dec
===================================================================
--- smstools-3.1.21.orig/scripts/hex2dec	2017-10-13 14:01:27.390230987 +0200
+++ smstools-3.1.21/scripts/hex2dec	2017-10-13 14:01:27.382230709 +0200
@@ -1,4 +1,4 @@
-#!/bin/gawk -f
+#!/usr/bin/gawk -f
 
 # This script reads a hex-dump and converts it to decimal numbers.
 # The hex-dump must contain one or more hexadecimal numbers separated