xbps-repo: renamed repository.c to show.c.

This commit is contained in:
Juan RP 2011-11-10 23:31:46 +01:00
parent c2eed68471
commit ced906ff3f
3 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ TOPDIR = ../..
-include $(TOPDIR)/config.mk -include $(TOPDIR)/config.mk
BIN = xbps-repo 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/fetch_cb.o ../xbps-bin/util.o
OBJS += ../xbps-bin/trans_cb.o OBJS += ../xbps-bin/trans_cb.o
MAN = $(BIN).8 MAN = $(BIN).8

View File

@ -35,7 +35,7 @@
/* From index.c */ /* From index.c */
int repo_genindex(const char *); int repo_genindex(const char *);
/* From repository.c */ /* From show.c */
int show_pkg_info_from_repolist(const char *, const char *); int show_pkg_info_from_repolist(const char *, const char *);
int show_pkg_deps_from_repolist(const char *); int show_pkg_deps_from_repolist(const char *);