Skip to content

Commit

Permalink
contrib/svn-fe: Fix IncludePath
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ramkumar Ramachandra authored and Junio C Hamano committed Aug 3, 2010
1 parent e605164 commit 199f549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/svn-fe/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down
2 changes: 1 addition & 1 deletion contrib/svn-fe/svn-fe.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

#include <stdlib.h>
#include "vcs-svn/svndump.h"
#include "svndump.h"

int main(int argc, char **argv)
{
Expand Down

0 comments on commit 199f549

Please sign in to comment.