From ced906ff3f5822c0429a1796664b9deb43c2b265 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 10 Nov 2011 23:31:46 +0100 Subject: [PATCH] xbps-repo: renamed repository.c to show.c. --- bin/xbps-repo/Makefile | 2 +- bin/xbps-repo/defs.h | 2 +- bin/xbps-repo/{repository.c => show.c} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/xbps-repo/{repository.c => show.c} (100%) diff --git a/bin/xbps-repo/Makefile b/bin/xbps-repo/Makefile index 381ab9e8..e8d3a6f4 100644 --- a/bin/xbps-repo/Makefile +++ b/bin/xbps-repo/Makefile @@ -2,7 +2,7 @@ TOPDIR = ../.. -include $(TOPDIR)/config.mk BIN = xbps-repo -OBJS = main.o index.o repository.o find-files.o +OBJS = main.o index.o show.o find-files.o OBJS += ../xbps-bin/fetch_cb.o ../xbps-bin/util.o OBJS += ../xbps-bin/trans_cb.o MAN = $(BIN).8 diff --git a/bin/xbps-repo/defs.h b/bin/xbps-repo/defs.h index 0e0c33a1..a13f89d9 100644 --- a/bin/xbps-repo/defs.h +++ b/bin/xbps-repo/defs.h @@ -35,7 +35,7 @@ /* From index.c */ int repo_genindex(const char *); -/* From repository.c */ +/* From show.c */ int show_pkg_info_from_repolist(const char *, const char *); int show_pkg_deps_from_repolist(const char *); diff --git a/bin/xbps-repo/repository.c b/bin/xbps-repo/show.c similarity index 100% rename from bin/xbps-repo/repository.c rename to bin/xbps-repo/show.c