diff options
Diffstat (limited to 'libX11/src/util')
-rw-r--r-- | libX11/src/util/.gitignore | 4 | ||||
-rw-r--r-- | libX11/src/util/mkks.sh | 22 |
2 files changed, 13 insertions, 13 deletions
diff --git a/libX11/src/util/.gitignore b/libX11/src/util/.gitignore index e744d636d..5f95924b5 100644 --- a/libX11/src/util/.gitignore +++ b/libX11/src/util/.gitignore @@ -1,2 +1,2 @@ -# Add & Override for this directory and it's subdirectories
-makekeys
+# Add & Override for this directory and it's subdirectories +makekeys diff --git a/libX11/src/util/mkks.sh b/libX11/src/util/mkks.sh index 3e80c354b..262cc9540 100644 --- a/libX11/src/util/mkks.sh +++ b/libX11/src/util/mkks.sh @@ -1,11 +1,11 @@ -#!/bin/sh
-
-cat $* | awk 'BEGIN { \
- printf "/*\n * This file is generated from %s. Do not edit.\n */\n", \
- "$(INCLUDESRC)/keysymdef.h";\
-} \
-/^#define/ { \
- len = length($2)-3; \
- printf("{ \"%s\", %s },\n", substr($2,4,len), $3); \
-}'
-
+#!/bin/sh + +cat $* | awk 'BEGIN { \ + printf "/*\n * This file is generated from %s. Do not edit.\n */\n", \ + "$(INCLUDESRC)/keysymdef.h";\ +} \ +/^#define/ { \ + len = length($2)-3; \ + printf("{ \"%s\", %s },\n", substr($2,4,len), $3); \ +}' + |