Skip to content

Commit 199f549

Browse files
artagnongitster
authored andcommitted
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>
1 parent e605164 commit 199f549

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/svn-fe/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ svn-fe$X: svn-fe.o $(VCSSVN_LIB) $(GIT_LIB)
3838
$(ALL_LDFLAGS) $(LIBS)
3939

4040
svn-fe.o: svn-fe.c ../../vcs-svn/svndump.h
41-
$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
41+
$(QUIET_CC)$(CC) -I../../vcs-svn -o $*.o -c $(ALL_CFLAGS) $<
4242

4343
svn-fe.html: svn-fe.txt
4444
$(QUIET_SUBDIR0)../../Documentation $(QUIET_SUBDIR1) \

contrib/svn-fe/svn-fe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
#include <stdlib.h>
7-
#include "vcs-svn/svndump.h"
7+
#include "svndump.h"
88

99
int main(int argc, char **argv)
1010
{

0 commit comments

Comments
 (0)