diff --git a/osg-stage1-el9.lst b/osg-stage1-el9.lst index a85d530..3d8dccf 100644 --- a/osg-stage1-el9.lst +++ b/osg-stage1-el9.lst @@ -25,4 +25,11 @@ libXinerama libXrandr libXrender libXtst -# vim:ft=conf +# New in el9 +gcc +gcc-c++ +kernel-srpm-macros +libstdc++-devel +lua-srpm-macros +llvm-libs +pkgconf diff --git a/stage1.py b/stage1.py index b565652..35e4696 100755 --- a/stage1.py +++ b/stage1.py @@ -101,7 +101,7 @@ def yumforceerase(packages): yuminstall(stage1_packages) # Hack: we don't want libpsl in stage 1, we need it in the tarball - if dver == 'el8': + if dver in ['el8', 'el9']: yumforceerase(["libpsl"])