diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-03-31 04:09:58 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-03-31 04:09:58 +0000 |
commit | 051d576288dd1b36f92348e81405e1013521299f (patch) | |
tree | 2e51231712edccefaceaa2f07aa4b31e26e430df /mk | |
parent | 90352a78d5c9982233b578bb0cded7a97e20e013 (diff) | |
download | pkgsrc-051d576288dd1b36f92348e81405e1013521299f.tar.gz |
uncomment an important line which should have never been commented out.
printindex works now.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/printindex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/printindex b/mk/bulk/printindex index 2f5bf3ad095..137cd8e662e 100644 --- a/mk/bulk/printindex +++ b/mk/bulk/printindex @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: printindex,v 1.3 2001/03/27 02:50:05 dmcmahill Exp $ +# $NetBSD: printindex,v 1.4 2001/03/31 04:09:58 dmcmahill Exp $ # # # Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -57,7 +57,7 @@ list=`grep '^[[:space:]]*'SUBDIR */Makefile | sed 's,/Makefile.*=[[:space:]]*,/, for pkgdir in $list do cd $pkgdir - #pkgname=`make show-var VARNAME=PKGNAME` + pkgname=`make show-var VARNAME=PKGNAME` echo "$pkgdir $pkgname " cd $cwd done |