mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 02:30:08 +01:00
meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. [thaller@redhat.com: rebased patch and adjusted for iwd support] https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00022.html
11 lines
160 B
Python
Executable file
11 lines
160 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import errno
|
|
import os
|
|
import sys
|
|
|
|
for location in sys.argv[1:]:
|
|
if os.path.isfile(location):
|
|
sys.exit(0)
|
|
|
|
sys.exit(errno.ENOENT)
|