diff options
author | Doug Barton <dougb@FreeBSD.org> | 2010-06-18 08:22:32 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2010-06-18 08:22:32 +0000 |
commit | c58c9c8b9a12080b7aa7cc8505d35c874bed37f2 (patch) | |
tree | ec31f7c17fb95b93fa5f51dc4dd9279a67c550d0 /ports-mgmt | |
parent | f90027b273f347e499fb763789a73af7e6ec3740 (diff) |
Notes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portmaster/files/portmaster.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports-mgmt/portmaster/files/portmaster.sh.in b/ports-mgmt/portmaster/files/portmaster.sh.in index 76d1930224be..3eaef1647b8c 100644 --- a/ports-mgmt/portmaster/files/portmaster.sh.in +++ b/ports-mgmt/portmaster/files/portmaster.sh.in @@ -367,7 +367,7 @@ pm_cd () { builtin cd $1 2>/dev/null || return 1; } pm_cd_pd () { builtin cd $pd/$1 2>/dev/null || fail "Cannot cd to port directory: $pd/$1"; } pm_kill () { /bin/kill $* >/dev/null 2>/dev/null; } -pm_make () { ( unset -v CUR_DEPS INSTALLED_LIST PM_DEPTH; +pm_make () { ( unset -v CUR_DEPS INSTALLED_LIST PM_DEPTH build_l; unset -v MASTER_RB_LIST CONFIG_SEEN_LIST; /usr/bin/make $PM_MAKE_ARGS $*; ); } pm_make_b () { /usr/bin/make $PM_MAKE_ARGS BEFOREPORTMK=bpm $*; } |