diff options
author | Judd Vinet <judd@archlinux.org> | 2002-05-24 20:08:43 +0200 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2002-05-24 20:08:43 +0200 |
commit | 660ea7e41b092ce286bcda9d4a6fcae105d98da7 (patch) | |
tree | 89e8c016ba95b0a4796c7f409a33df36c8f89339 | |
parent | e322cffb28883e85593b6e458ccd2feae417b1b8 (diff) | |
download | dbscripts-660ea7e41b092ce286bcda9d4a6fcae105d98da7.tar.gz dbscripts-660ea7e41b092ce286bcda9d4a6fcae105d98da7.tar.xz |
Fixed pkglist generator scripts so they aren't hardcoded to use base,opt,contrib package categories anymore
-rwxr-xr-x | genpkglist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ tl=`pwd` -for category in {base,opt,contrib}; do +for category in `find * -type d -maxdepth 0 | grep -v CVS`; do echo $category >>packages.txt for pkg in `ls $category | sort`; do cd $tl/$category/$pkg |