search for: non_svn_instfiles

Displaying 4 results from an estimated 4 matches for "non_svn_instfiles".

2015 Jan 19
2
[PATCH] Makefile: add support for git svn clones
...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 @@ -104,7 +107,7 @@ svnonly: @if test ! -f "$(srcdir)/doc/FAQ" || test -f non-tarball ; then \ (cd doc/manual && $(MAKE) front-matter html-non-svn) ; \ touch non-tarball ; \ - (cd $(srcdir); LC_ALL=C TZ=GMT svn info || $(ECHO) "Revision: -99")...
2015 Jan 26
1
[PATCH v2] Makefile: add support for git svn clones
...file.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,7 +107,7 @@ svnonly: @if test ! -f "$(srcdir)/doc/FAQ" || test -f non-tarball ; then \ (cd doc/manual && $(MAKE) front-matter html-non-svn) ; \ touch non-tarball ; \ - (cd $(srcdir); LC_ALL=C TZ=GMT svn info || $(ECHO) "Revision: -99")...
2015 Jan 13
0
[PATCH] Makefile: add support for git svn clones
...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 @@ -104,7 +107,7 @@ svnonly: @if test ! -f "$(srcdir)/doc/FAQ" || test -f non-tarball ; then \ (cd doc/manual && $(MAKE) front-matter html-non-svn) ; \ touch non-tarball ; \ - (cd $(srcdir); LC_ALL=C TZ=GMT svn info || $(ECHO) "Revision: -99")...
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
....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 > @@ -104,7 +107,7 @@ svnonly: > @if test ! -f "$(srcdir)/doc/FAQ" || test -f non-tarball ; then \ > (cd doc/manual && $(MAKE) front-matter html-non-svn) ; \ > touch non-tarball ; \ > - (cd $(srcdir); LC_ALL=C TZ=GMT svn info || $(ECHO) &q...