diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-06-23 11:57:53 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-06-23 11:57:53 +0200 |
commit | fcef4ecc315bdd46b4ea9c680bd7a42ed0103990 (patch) | |
tree | b98294e125338d4e98506e27ee4d1bf4dc2d76b1 | |
parent | c21747571ad14fc17a8e73cb0ad39c0ec64856d4 (diff) |
Rename the check-no-vignettes target to quickcheck
and do not check using the --as-cran option to skip the check
for CRAN incoming feasibility.
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index ff39a59f..b236eef3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -61,9 +61,9 @@ install-no-vignettes: build-no-vignettes check: build "$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ) -check-no-vignettes: build-no-vignettes +quickcheck: build-no-vignettes mv $(TGZVNR) $(TGZ) - "$(RBIN)/R" CMD check --as-cran --no-tests --no-build-vignettes --no-vignettes $(TGZ) + "$(RBIN)/R" CMD check --no-tests --no-build-vignettes --no-vignettes $(TGZ) mv $(TGZ) $(TGZVNR) clean: |