Remove unused Postfix argument from InstallPython

It was used for Systemtap hooks, which were removed recently:
31d212b3c7
This commit is contained in:
Iryna Shcherbina 2018-02-13 16:23:24 +01:00
parent f3f5f60ac0
commit 9203532359
1 changed files with 2 additions and 5 deletions

View File

@ -815,7 +815,6 @@ InstallPython() {
PyInstSoName=$2
MoreCFlags=$3
LDVersion=$4
Postfix=$5
# Switch to the directory with this configuration's built files
ConfDir=build/$ConfName
@ -869,16 +868,14 @@ EOF
InstallPython debug \
%{py_INSTSONAME_debug} \
-O0 \
%{LDVERSION_debug} \
-debug
%{LDVERSION_debug}
%endif # with debug_build
# Now the optimized build:
InstallPython optimized \
%{py_INSTSONAME_optimized} \
"" \
%{LDVERSION_optimized} \
""
%{LDVERSION_optimized}
# Install directories for additional packages
install -d -m 0755 %{buildroot}%{pylibdir}/site-packages/__pycache__