Revert "debian/tests/unit-config: Tolerate path variations"

The double slashes got fixed properly upstream again:
https://github.com/systemd/systemd/commit/23bdba61b

This reverts commit 3da52a0fab.
This commit is contained in:
Martin Pitt 2019-03-14 13:29:49 +01:00
parent bd89a706b1
commit 8d72f4f1c3

View File

@ -10,9 +10,9 @@ import sys
import tempfile
from glob import glob
system_unit_dir = os.path.realpath(subprocess.check_output(
system_unit_dir = subprocess.check_output(
['pkg-config', '--variable=systemdsystemunitdir', 'systemd'],
universal_newlines=True).strip())
universal_newlines=True).strip()
systemd_sysv_install = os.path.join(os.path.dirname(system_unit_dir),
'systemd-sysv-install')