search for: 10415abd442b

Displaying 1 result from an estimated 1 matches for "10415abd442b".

2015 Jan 26
1
[PATCH v2] Makefile: add support for git svn clones
...ested on my linux box, if someone could give this a whirl on windows and Mac OS X, I'd be really glad. cheers Makefile.in | 5 ++++- src/include/Makefile.win | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 44b0a3b4b99f..10415abd442b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,6 +9,9 @@ top_builddir = . include $(top_builddir)/Makeconf +GIT := `if [ -d "$(top_builddir)/.git" ]; then \ + echo "git"; fi` + distdir = $(PACKAGE)-$(VERSION) INSTFILES = COPYING NON_SVN_INSTFILES = SVN-REVISION @@ -104...