Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | Upstream-Status: Submitted [sourceforge] |
| 2 | |
| 3 | From 75d789d0ea9716c9a9ae72f42a2fcfa907cf4a12 Mon Sep 17 00:00:00 2001 |
| 4 | From: Matthieu Crapet <mcrapet@gmail.com> |
| 5 | Date: Mon, 30 Jun 2014 13:52:25 +0200 |
| 6 | Subject: [PATCH] usage2c.awk: fix wrong basename regexp |
| 7 | |
| 8 | Previously not matching with filename argument with absolute path. |
| 9 | |
| 10 | Signed-off-by: Matthieu Crapet <mcrapet@gmail.com> |
| 11 | --- |
| 12 | usage2c.awk | 4 ++-- |
| 13 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 14 | |
| 15 | diff --git a/usage2c.awk b/usage2c.awk |
| 16 | index 94b897a..9aea212 100755 |
| 17 | --- a/usage2c.awk |
| 18 | +++ b/usage2c.awk |
| 19 | @@ -6,13 +6,13 @@ BEGIN { |
| 20 | } |
| 21 | |
| 22 | # text in src/foo-bar.txt results in |
| 23 | -# static const char foo_text[] = { |
| 24 | +# static const char foo_bar[] = { |
| 25 | # 't', 'h', 'e', ' ', 't', 'e', 'x', 't', ... |
| 26 | # } |
| 27 | length(command_name) == 0 { |
| 28 | command_name = FILENAME; |
| 29 | sub(/\.txt$/, "", command_name); |
| 30 | - sub(/^([^\/]+\/)*/, "", command_name); |
| 31 | + sub(/^.*\//, "", command_name); |
| 32 | gsub(/-/, "_", command_name); |
| 33 | printf("static const char %s[] = {\n", command_name); |
| 34 | progs = 0; |
| 35 | -- |
| 36 | 2.0.0 |
| 37 | |