diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2006-09-11 13:39:44 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2006-09-11 13:39:44 +0000 |
| commit | c1e29f712e8efec2bc4ad68407a6ff836fb30cc5 (patch) | |
| tree | d58e3e5e060b6a1411255c5a4caf0b1a243833d7 /tools | |
| parent | 95dc12e160156b7deef66af3ea906acfe1ee10de (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build/options/makeman | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/build/options/makeman b/tools/build/options/makeman index f75a4ab8807b..9a8d5ffe4806 100644 --- a/tools/build/options/makeman +++ b/tools/build/options/makeman @@ -5,7 +5,7 @@ ident='$FreeBSD$' # -# show settings | options +# usage: show { settings | options } ... # show() { @@ -25,8 +25,10 @@ show() exit 1 ;; esac - make "$@" -f ../../../share/mk/bsd.own.mk SRCCONF=/dev/null -V_ -dg1 | - grep ^MK_ |sort | + ( + cd ../../.. + make "$@" showconfig SRCCONF=/dev/null __MAKE_CONF=/dev/null + ) | while read var _ val; do opt=${var#MK_} case ${val} in |
