search for: 221c437972ad

Displaying 3 results from an estimated 3 matches for "221c437972ad".

2015 Jan 19
2
[PATCH] Makefile: add support for git svn clones
...ead 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 = SVN-REVISION...
2015 Jan 13
0
[PATCH] Makefile: add support for git svn clones
...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 = SVN-REVISION...
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
...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) >...