[dpdk-dev,2/3] app/proc_info: rename folder to remove underscore

Message ID 20180216165336.153079-3-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Bruce Richardson
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Bruce Richardson Feb. 16, 2018, 4:53 p.m. UTC
  All other apps in the app folder use "-" rather than "_" to separate words
in the app name, so rename proc_info to be consistent.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 app/Makefile                          | 2 +-
 app/{proc_info => proc-info}/Makefile | 0
 app/{proc_info => proc-info}/main.c   | 0
 3 files changed, 1 insertion(+), 1 deletion(-)
 rename app/{proc_info => proc-info}/Makefile (100%)
 rename app/{proc_info => proc-info}/main.c (100%)
  

Comments

Van Haaren, Harry March 12, 2018, 12:30 p.m. UTC | #1
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson
> Sent: Friday, February 16, 2018 4:54 PM
> To: dev@dpdk.org
> Cc: Richardson, Bruce <bruce.richardson@intel.com>
> Subject: [dpdk-dev] [PATCH 2/3] app/proc_info: rename folder to remove
> underscore
> 
> All other apps in the app folder use "-" rather than "_" to separate words
> in the app name, so rename proc_info to be consistent.
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
  

Patch

diff --git a/app/Makefile b/app/Makefile
index 0eaed5384..069fa9849 100644
--- a/app/Makefile
+++ b/app/Makefile
@@ -4,7 +4,7 @@ 
 include $(RTE_SDK)/mk/rte.vars.mk
 
 DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
-DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info
+DIRS-$(CONFIG_RTE_PROC_INFO) += proc-info
 DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
 
 ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y)
diff --git a/app/proc_info/Makefile b/app/proc-info/Makefile
similarity index 100%
rename from app/proc_info/Makefile
rename to app/proc-info/Makefile
diff --git a/app/proc_info/main.c b/app/proc-info/main.c
similarity index 100%
rename from app/proc_info/main.c
rename to app/proc-info/main.c