perl/config.over
Jitka Plesnikova 006e711132 Resolves: RHEL-75798 - 5.40.1 bump
- 5.40.1 bump (see <https://metacpan.org/release/SHAY/perl-5.40.1/view/pod/perldelta.pod>)
- Add config.over to make build od perl reproducible
- Removed unnecessary conversion
- Add new systemtap-sdt-dtrace to build deps
2025-01-22 16:08:28 +01:00

22 lines
460 B
Bash

#!/bin/sh
case "$osname" in
linux)
osvers=6.12.0
osdesc="#1 smp preempt_dynamic $osvers"
os=gnulinux
;;
esac
# set configuration time
cf_time=$(LC_ALL=C date --utc -d @$SOURCE_DATE_EPOCH)
# set generic information for reproducibility
myhostname=localhost
mydomain=
machine_uname=$(uname -m | tr '[A-Z]' '[a-z]' | sed -e "s,['/],,g")
if [ -n "$osdesc" ]; then
myuname="$osname $myhostname $osvers $osdesc $machine_uname $os "
fi