diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2010-07-29 11:06:19 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-03 06:49:20 -0700 |
commit | 199f5498741f3792e49c211f27333a426d2b11aa (patch) | |
tree | 4c6b60ef247fb00bc96fbc5090d6cbf349d87baf /contrib | |
parent | Add a sample user for the svndump library (diff) | |
download | tgif-199f5498741f3792e49c211f27333a426d2b11aa.tar.xz |
contrib/svn-fe: Fix IncludePath
Include the path "../../vcs-svn" while compiling it in the Makefile
and change svn-fe.c to include svndump.h.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/svn-fe/Makefile | 2 | ||||
-rw-r--r-- | contrib/svn-fe/svn-fe.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/svn-fe/Makefile b/contrib/svn-fe/Makefile index 4cc8d15827..360d8da417 100644 --- a/contrib/svn-fe/Makefile +++ b/contrib/svn-fe/Makefile @@ -38,7 +38,7 @@ svn-fe$X: svn-fe.o $(VCSSVN_LIB) $(GIT_LIB) $(ALL_LDFLAGS) $(LIBS) svn-fe.o: svn-fe.c ../../vcs-svn/svndump.h - $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $< + $(QUIET_CC)$(CC) -I../../vcs-svn -o $*.o -c $(ALL_CFLAGS) $< svn-fe.html: svn-fe.txt $(QUIET_SUBDIR0)../../Documentation $(QUIET_SUBDIR1) \ diff --git a/contrib/svn-fe/svn-fe.c b/contrib/svn-fe/svn-fe.c index 43c4320cac..e9b9ba4da4 100644 --- a/contrib/svn-fe/svn-fe.c +++ b/contrib/svn-fe/svn-fe.c @@ -4,7 +4,7 @@ */ #include <stdlib.h> -#include "vcs-svn/svndump.h" +#include "svndump.h" int main(int argc, char **argv) { |