mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
sysv-generator-test: do not query $builddir
This variable is not set by meson, so let's not try to use it. We could use some more elaborate scheme (e.g. based on $MESON_BUILD_ROOT and $MESON_SUBDIR) to find the path to systemd-sysv-generator, but it seems that plain ./systemd-sysv-generator works just as well and has the advantage that it's easy to invoke the test by hand (as long as one cd's to the meson build dir).
This commit is contained in:
parent
a4b57b322e
commit
73e406e140
@ -28,7 +28,7 @@ from glob import glob
|
||||
import collections
|
||||
from configparser import RawConfigParser
|
||||
|
||||
sysv_generator = os.path.join(os.environ.get('builddir', '.'), 'systemd-sysv-generator')
|
||||
sysv_generator = './systemd-sysv-generator'
|
||||
|
||||
class MultiDict(collections.OrderedDict):
|
||||
def __setitem__(self, key, value):
|
||||
|
Loading…
Reference in New Issue
Block a user