From: Ondrej Oprala Date: Fri, 8 Nov 2013 16:13:06 +0000 (+0100) Subject: hexdump: add the prefix 'hexdump-' to {conv,display,parse}.c X-Git-Tag: v2.25-rc1~705 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af324b1f72282ce4fa95546af0e865b46a10a457;p=thirdparty%2Futil-linux.git hexdump: add the prefix 'hexdump-' to {conv,display,parse}.c Signed-off-by: Ondrej Oprala --- diff --git a/text-utils/Makemodule.am b/text-utils/Makemodule.am index 970b452e96..267a195ca4 100644 --- a/text-utils/Makemodule.am +++ b/text-utils/Makemodule.am @@ -29,12 +29,12 @@ column_SOURCES = text-utils/column.c column_LDADD = $(LDADD) libcommon.la hexdump_SOURCES = \ - text-utils/conv.c \ - text-utils/display.c \ + text-utils/hexdump-conv.c \ + text-utils/hexdump-display.c \ text-utils/hexdump.c \ text-utils/hexdump.h \ text-utils/hexsyntax.c \ - text-utils/parse.c + text-utils/hexdump-parse.c hexdump_LDADD = $(LDADD) libcommon.la rev_SOURCES = text-utils/rev.c diff --git a/text-utils/conv.c b/text-utils/hexdump-conv.c similarity index 100% rename from text-utils/conv.c rename to text-utils/hexdump-conv.c diff --git a/text-utils/display.c b/text-utils/hexdump-display.c similarity index 100% rename from text-utils/display.c rename to text-utils/hexdump-display.c diff --git a/text-utils/parse.c b/text-utils/hexdump-parse.c similarity index 100% rename from text-utils/parse.c rename to text-utils/hexdump-parse.c