Displaying 7 results from an estimated 7 matches for "instfile".
Did you mean:
initfile
2018 Jul 06
0
NEWS vs. inst/NEWS
...Package:", pkgName),
paste("Title: NEWS vs. inst/NEWS"),
paste("Description: Which is installed, NEWS or inst/NEWS?"),
paste("Version: 0.1"))
file.create(file.path(srcPkg, "NAMESPACE"))
dir.create(inst <- file.path(srcPkg, "inst"))
instFiles <- c("NEWS", "CITATION") # these both at top-level and in inst
directory
for(instFile in instFiles) {
cat(file=file.path(srcPkg, instFile), sep="\n",
paste0("The original top-level ", instFile, " file"))
cat(file=file.path(inst, ins...
2003 Sep 28
0
(fwd) package inst directory copied too early? (PR#4329)
...ge RLIB=/vol/R/src/win32/library pkg-maps
>
>---------- Making package maps ------------
> installing inst files
> adding build stamp to DESCRIPTION
> making DLL ...
> :
> etc.
>
>The problem appears to be in the file MakePkg, where the fragment:
>ifneq ($(strip $(INSTFILES)),)
> @$(ECHO) " installing inst files"
> -@$(CP) -r inst/* $(DPKG)
>endif
>occurs as part of $(DPKG)/zzzz, which is the *first* item in the "all"
>target.
>
>However, just moving the fragment to another target is not sufficient,
>since th...
2003 Sep 28
0
(fwd) package inst directory copied too early? (PR#4330)
...ge RLIB=/vol/R/src/win32/library pkg-maps
>
>---------- Making package maps ------------
> installing inst files
> adding build stamp to DESCRIPTION
> making DLL ...
> :
> etc.
>
>The problem appears to be in the file MakePkg, where the fragment:
>ifneq ($(strip $(INSTFILES)),)
> @$(ECHO) " installing inst files"
> -@$(CP) -r inst/* $(DPKG)
>endif
>occurs as part of $(DPKG)/zzzz, which is the *first* item in the "all"
>target.
>
>However, just moving the fragment to another target is not sufficient,
>since th...
2015 Jan 19
2
[PATCH] Makefile: add support for git svn clones
...file.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
@@ -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 || $(ECH...
2015 Jan 26
1
[PATCH v2] Makefile: add support for git svn clones
...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,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 || $(ECH...
2015 Jan 13
0
[PATCH] Makefile: add support for git svn clones
...file.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
@@ -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 || $(ECH...
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
...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_...