Remove unused Postfix argument from InstallPython
It was used for Systemtap hooks, which were removed recently:
dd3cb47629
This commit is contained in:
parent
56c7fd9871
commit
ffaa0f3078
@ -819,7 +819,6 @@ InstallPython() {
|
|||||||
PyInstSoName=$2
|
PyInstSoName=$2
|
||||||
MoreCFlags=$3
|
MoreCFlags=$3
|
||||||
LDVersion=$4
|
LDVersion=$4
|
||||||
Postfix=$5
|
|
||||||
|
|
||||||
# Switch to the directory with this configuration's built files
|
# Switch to the directory with this configuration's built files
|
||||||
ConfDir=build/$ConfName
|
ConfDir=build/$ConfName
|
||||||
@ -873,16 +872,14 @@ EOF
|
|||||||
InstallPython debug \
|
InstallPython debug \
|
||||||
%{py_INSTSONAME_debug} \
|
%{py_INSTSONAME_debug} \
|
||||||
-O0 \
|
-O0 \
|
||||||
%{LDVERSION_debug} \
|
%{LDVERSION_debug}
|
||||||
-debug
|
|
||||||
%endif # with debug_build
|
%endif # with debug_build
|
||||||
|
|
||||||
# Now the optimized build:
|
# Now the optimized build:
|
||||||
InstallPython optimized \
|
InstallPython optimized \
|
||||||
%{py_INSTSONAME_optimized} \
|
%{py_INSTSONAME_optimized} \
|
||||||
"" \
|
"" \
|
||||||
%{LDVERSION_optimized} \
|
%{LDVERSION_optimized}
|
||||||
""
|
|
||||||
|
|
||||||
# Install directories for additional packages
|
# Install directories for additional packages
|
||||||
install -d -m 0755 %{buildroot}%{pylibdir}/site-packages/__pycache__
|
install -d -m 0755 %{buildroot}%{pylibdir}/site-packages/__pycache__
|
||||||
|
Loading…
Reference in New Issue
Block a user