]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-5.4.13-dont-override-existing-variables-with-etc-os-release.patch
- added rpm-double_check_unpackaged_subdirs patch (do a strict check when Bloom filte...
[packages/rpm.git] / rpm-5.4.13-dont-override-existing-variables-with-etc-os-release.patch
1 --- rpm-5.4.13/configure.ac~    2013-08-26 21:59:50.601111413 +0200
2 +++ rpm-5.4.13/configure.ac     2013-08-26 21:59:51.917134583 +0200
3 @@ -2255,7 +2255,7 @@ unknown|pc|ibm|redhat|pld|mandriva|conec
4         test -f /usr/bin/crux &&                RPMCANONVENDOR=crux
5         test -f /etc/ark-release &&             RPMCANONVENDOR=ark
6         test -f /etc/openmamba-release &&       RPMCANONVENDOR=openmamba
7 -       test -r /etc/os-release &&. /etc/os-release && [ -n "$ID" ] && RPMCANONVENDOR="$ID"
8 +       test -r /etc/os-release && ID=$(. /etc/os-release && [ -n "$ID" ] && echo "$ID") && RPMCANONVENDOR="$ID"
9         ;;
10  esac
11  RPMCANONOS="$target_os_noversion"
This page took 0.027566 seconds and 3 git commands to generate.