diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-11-17 02:38:17 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-11-17 02:38:17 +0000 |
commit | 27a0971d0b596224d5833b5a80dd3778bb0087e9 (patch) | |
tree | 5bf3676ff45d2014408fb47a3b29d37424832eef | |
parent | 19ff5160fd6b34f66b9ad1ca1ab89c1f156cd07c (diff) | |
download | anaconda-27a0971d0b596224d5833b5a80dd3778bb0087e9.tar.gz anaconda-27a0971d0b596224d5833b5a80dd3778bb0087e9.tar.xz anaconda-27a0971d0b596224d5833b5a80dd3778bb0087e9.zip |
2005-11-16 Jeremy Katz <katzj@redhat.com>
* scripts/buildinstall (BUILDINSTALL): Run createrepo quietly and
with the group info.
-rwxr-xr-x | scripts/buildinstall | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index f8ed7f07f..dcbe9da21 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -153,9 +153,9 @@ fi echo "Creating repository metadata..." if [ -x /usr/bin/runroot ]; then - runroot $COMPNAME --onlyone --arch $BUILDARCH "createrepo $p" + runroot $COMPNAME --onlyone --arch $BUILDARCH "createrepo -q -g $PRODUCTPATH/base/comps.xml $p" else - createrepo $p + createrepo -q -g $PRODUCTPATH/base/comps.xml $p fi if [ -n "$PKGORDER" ]; then |