From e82492d14f3f0b00eaca5969f608d347b41cf07e Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 29 Dec 2013 01:39:36 +0000 Subject: [PATCH 1/1] Rename command_util.sh -> command_util.bash. It's a bash script which wouldn't run properly under general POSIX shells. --- Makefile.real | 6 +++--- command_util.sh => command_util.bash | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename command_util.sh => command_util.bash (100%) diff --git a/Makefile.real b/Makefile.real index 6d839880..9688e2e8 100644 --- a/Makefile.real +++ b/Makefile.real @@ -125,13 +125,13 @@ endif %_command_list.h: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' - $(Q) ./command_util.sh h < $< >$@ + $(Q) ./command_util.bash h < $< >$@ %_command_list.man: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' - $(Q) ./command_util.sh man < $< > $@ + $(Q) ./command_util.bash man < $< > $@ %_completion.h: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' - $(Q) ./command_util.sh compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \ + $(Q) ./command_util.bash compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \ $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@ server_command_list.h server_command_list.man server_completion.h: command.c diff --git a/command_util.sh b/command_util.bash similarity index 100% rename from command_util.sh rename to command_util.bash -- 2.39.2