diff options
author | Juergen Daubert <jue@jue.li> | 2008-10-27 10:10:15 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2008-10-27 10:10:15 +0100 |
commit | fb26760a2b41d4e7acfa240daecad1c6603b353a (patch) | |
tree | d0b9794d244b73bccaea409395644917f833db57 /ports | |
parent | a82743a46d032107fbf9bf2e060ead73ca7fe18d (diff) | |
download | iso-fb26760a2b41d4e7acfa240daecad1c6603b353a.tar.gz iso-fb26760a2b41d4e7acfa240daecad1c6603b353a.tar.xz |
checkportstree: renamed PTREE to PORTS_DIR to be consistend with the Makefile
Diffstat (limited to 'ports')
-rwxr-xr-x | ports/checkportstree | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/checkportstree b/ports/checkportstree index 644a64e..750fce5 100755 --- a/ports/checkportstree +++ b/ports/checkportstree @@ -64,7 +64,7 @@ outdated_pkg() { outdated() { local prt otd for prt in $(cat $ALL_PKGS); do - pushd $(find $PTREE -maxdepth 2 -name $prt -type d) > /dev/null + pushd $(find $PORTS_DIR -maxdepth 2 -name $prt -type d) > /dev/null otd="$otd $(outdated_pkg)" popd > /dev/null done @@ -73,7 +73,7 @@ outdated() { ALL_PKGS=../packages.all -PTREE=. +PORTS_DIR=. setup find_packages |