summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-06-26 14:38:20 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-06-26 14:38:20 +0200
commit2b6105a50027ab2e6007998967f9a46aa4cac6fe (patch)
treef782cab3aea7b0c9d867a4bbc8beeee80ec4914d
parent78950ebb92510c72c6cd08e591378ae6f292b0ac (diff)
ct / checklinks: Add $pkgdir and parameters with absolute paths
-rwxr-xr-xbin/checklinks5
-rwxr-xr-xbin/ct10
2 files changed, 12 insertions, 3 deletions
diff --git a/bin/checklinks b/bin/checklinks
index 3150293..d9df1a2 100755
--- a/bin/checklinks
+++ b/bin/checklinks
@@ -268,9 +268,12 @@ Set the level threshold to show status messages.
=item B<-p>, B<--parameter> I<parameter>=I<value>
While reading the links file, replace $I<parameter> with I<value>.
+
When used in conjuction with ct(1), $package will be set to the current
package's relative path (as seen from $HOME, like C<packages/caretaker>),
-and $etc will be set to $package/etc (like C<packages/caretaker/etc>)
+$etc will be set to $package/etc (like C<packages/caretaker/etc>) and $pkgdir
+will point to the package root (like C<packages>). Also, for each of these
+parameters, C<a_param> (like $a_etc) is the corresponding absolute path.
=item B<-q>, B<--quiet>
diff --git a/bin/ct b/bin/ct
index 4be6702..338fe8a 100755
--- a/bin/ct
+++ b/bin/ct
@@ -416,9 +416,15 @@ function priority_name {
function run_checklinks {
if [[ -e links ]] {
+
${self_path}/bin/checklinks ${*} ${CL_OPTIONS} \
- --parameter package=${PWD} \
- --parameter etc=${PWD}/etc
+ --parameter package=${PWD} \
+ --parameter a_package=${HOME}/${PWD} \
+ --parameter etc=${PWD}/etc \
+ --parameter a_etc=${HOME}/${PWD}/etc \
+ --parameter pkgdir=${PKG_DIR#${HOME}/} \
+ --parameter a_pkgdir=${PKG_DIR}
+
} elif [[ -d etc && ${MAGIC_ETC} == 1 ]] {
${self_path}/bin/checklinks --ct-auto ${CL_OPTIONS} ${*}
}