search for: 44b0a3b4b99f

Displaying 4 results from an estimated 4 matches for "44b0a3b4b99f".

2015 Jan 19
2
[PATCH] Makefile: add support for git svn clones
...svn info insstead of svn info. Signed-off-by: Felipe Balbi <balbi at kernel.org> --- Resending the patch as I believe the previous version didn't reach the mailing list. Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 44b0a3b4b99f..221c437972ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,6 +9,9 @@ top_builddir = . include $(top_builddir)/Makeconf +GIT := $(shell if [ -d "$(top_builddir)/.git" ]; then \ + echo "git"; fi) + distdir = $(PACKAGE)-$(VERSION) INSTFILES = COPYING NON_SVN_INSTFILES =...
2015 Jan 26
1
[PATCH v2] Makefile: add support for git svn clones
...as only been tested 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-RE...
2015 Jan 13
0
[PATCH] Makefile: add support for git svn clones
...fo insstead of svn info. Signed-off-by: Felipe Balbi <balbi at kernel.org> --- Patch generated with git. Let me know if there are any formatting changes you guys might want. Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 44b0a3b4b99f..221c437972ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,6 +9,9 @@ top_builddir = . include $(top_builddir)/Makeconf +GIT := $(shell if [ -d "$(top_builddir)/.git" ]; then \ + echo "git"; fi) + distdir = $(PACKAGE)-$(VERSION) INSTFILES = COPYING NON_SVN_INSTFILES =...
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
...ipe Balbi <balbi at kernel.org> > --- > > Resending the patch as I believe the previous version didn't > reach the mailing list. > > Makefile.in | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/Makefile.in b/Makefile.in > index 44b0a3b4b99f..221c437972ad 100644 > --- a/Makefile.in > +++ b/Makefile.in > @@ -9,6 +9,9 @@ top_builddir = . > > include $(top_builddir)/Makeconf > > +GIT := $(shell if [ -d "$(top_builddir)/.git" ]; then \ > + echo "git"; fi) > + > distdir = $(PACKAGE)-$(...