pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/R2pkg/files



Module Name:    pkgsrc
Committed By:   brook
Date:           Thu Mar  5 17:15:31 UTC 2020

Modified Files:
        pkgsrc/pkgtools/R2pkg/files: R2pkg.sh

Log Message:
Define RPKG, not rpkg, in the environment for R2pkg.R

When reading the environment, R2pkg.R expects RPKG to be the name of the
R package.  Fix the inadvertent use of lower case in the variable name.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/pkgtools/R2pkg/files/R2pkg.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/R2pkg/files/R2pkg.sh
diff -u pkgsrc/pkgtools/R2pkg/files/R2pkg.sh:1.15 pkgsrc/pkgtools/R2pkg/files/R2pkg.sh:1.16
--- pkgsrc/pkgtools/R2pkg/files/R2pkg.sh:1.15   Thu Mar  5 17:07:54 2020
+++ pkgsrc/pkgtools/R2pkg/files/R2pkg.sh        Thu Mar  5 17:15:31 2020
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: R2pkg.sh,v 1.15 2020/03/05 17:07:54 brook Exp $
+# $NetBSD: R2pkg.sh,v 1.16 2020/03/05 17:15:31 brook Exp $
 #
 # Copyright (c) 2014,2015,2016,2017,2018,2019
 #      Brook Milligan.  All rights reserved.
@@ -153,7 +153,7 @@ preserve_original_content ()
 
 make_package ()
 {
-    env LEVEL="$level" rpkg="$rpkg" PACKAGES_LIST="$packages_list" \
+    env LEVEL="$level" RPKG="$rpkg" PACKAGES_LIST="$packages_list" \
        R2PKG="$r2pkg" ARGS="$args" RECURSIVE="$recursive" \
        UPDATE="$update" DEPENDENCY_LIST="$dependency_list" \
        MAINTAINER_EMAIL="$maintainer_email" \



Home | Main Index | Thread Index | Old Index