From f2c6ff33b7027ea757c4a6f641ec5d3b03819311 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 14 Mar 2014 13:15:22 -0700 Subject: [PATCH] tools/: make filenames consistent _ for source files, - for (shippable) build targets. Signed-off-by: Sage Weil --- src/tools/Makefile.am | 10 +++++----- .../{ceph-filestore-dump.cc => ceph_filestore_dump.cc} | 0 .../{ceph-filestore-tool.cc => ceph_filestore_tool.cc} | 0 .../{ceph-kvstore-tool.cc => ceph_kvstore_tool.cc} | 0 .../{ceph-monstore-tool.cc => ceph_monstore_tool.cc} | 0 .../{ceph-osdomap-tool.cc => ceph_osdomap_tool.cc} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename src/tools/{ceph-filestore-dump.cc => ceph_filestore_dump.cc} (100%) rename src/tools/{ceph-filestore-tool.cc => ceph_filestore_tool.cc} (100%) rename src/tools/{ceph-kvstore-tool.cc => ceph_kvstore_tool.cc} (100%) rename src/tools/{ceph-monstore-tool.cc => ceph_monstore_tool.cc} (100%) rename src/tools/{ceph-osdomap-tool.cc => ceph_osdomap_tool.cc} (100%) diff --git a/src/tools/Makefile.am b/src/tools/Makefile.am index 0a386cc388388..64cd49482be15 100644 --- a/src/tools/Makefile.am +++ b/src/tools/Makefile.am @@ -1,25 +1,25 @@ -ceph_osdomap_tool_SOURCES = tools/ceph-osdomap-tool.cc +ceph_osdomap_tool_SOURCES = tools/ceph_osdomap_tool.cc ceph_osdomap_tool_LDADD = $(LIBOS) $(CEPH_GLOBAL) $(BOOST_PROGRAM_OPTIONS_LIBS) bin_DEBUGPROGRAMS += ceph-osdomap-tool -ceph_monstore_tool_SOURCES = tools/ceph-monstore-tool.cc +ceph_monstore_tool_SOURCES = tools/ceph_monstore_tool.cc ceph_monstore_tool_LDADD = $(LIBOS) $(CEPH_GLOBAL) $(BOOST_PROGRAM_OPTIONS_LIBS) bin_DEBUGPROGRAMS += ceph-monstore-tool -ceph_kvstore_tool_SOURCES = tools/ceph-kvstore-tool.cc +ceph_kvstore_tool_SOURCES = tools/ceph_kvstore_tool.cc ceph_kvstore_tool_LDADD = $(LIBOS) $(CEPH_GLOBAL) ceph_kvstore_tool_CXXFLAGS = $(UNITTEST_CXXFLAGS) bin_DEBUGPROGRAMS += ceph-kvstore-tool -ceph_filestore_tool_SOURCES = tools/ceph-filestore-tool.cc +ceph_filestore_tool_SOURCES = tools/ceph_filestore_tool.cc ceph_filestore_tool_LDADD = $(LIBOSD) $(LIBOS) $(CEPH_GLOBAL) -lboost_program_options if LINUX ceph_filestore_tool_LDADD += -ldl endif # LINUX bin_PROGRAMS += ceph_filestore_tool -ceph_filestore_dump_SOURCES = tools/ceph-filestore-dump.cc +ceph_filestore_dump_SOURCES = tools/ceph_filestore_dump.cc ceph_filestore_dump_LDADD = $(LIBOSD) $(LIBOS) $(CEPH_GLOBAL) $(BOOST_PROGRAM_OPTIONS_LIBS) if LINUX ceph_filestore_dump_LDADD += -ldl diff --git a/src/tools/ceph-filestore-dump.cc b/src/tools/ceph_filestore_dump.cc similarity index 100% rename from src/tools/ceph-filestore-dump.cc rename to src/tools/ceph_filestore_dump.cc diff --git a/src/tools/ceph-filestore-tool.cc b/src/tools/ceph_filestore_tool.cc similarity index 100% rename from src/tools/ceph-filestore-tool.cc rename to src/tools/ceph_filestore_tool.cc diff --git a/src/tools/ceph-kvstore-tool.cc b/src/tools/ceph_kvstore_tool.cc similarity index 100% rename from src/tools/ceph-kvstore-tool.cc rename to src/tools/ceph_kvstore_tool.cc diff --git a/src/tools/ceph-monstore-tool.cc b/src/tools/ceph_monstore_tool.cc similarity index 100% rename from src/tools/ceph-monstore-tool.cc rename to src/tools/ceph_monstore_tool.cc diff --git a/src/tools/ceph-osdomap-tool.cc b/src/tools/ceph_osdomap_tool.cc similarity index 100% rename from src/tools/ceph-osdomap-tool.cc rename to src/tools/ceph_osdomap_tool.cc -- 2.39.5