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
|