diff options
Diffstat (limited to 'src/machine')
-rw-r--r-- | src/machine/machinectl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 16ce2f424b..9f8c68b184 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -31,8 +31,13 @@ #include <arpa/inet.h> #include <net/if.h> #include <sys/mount.h> + +/* When we include libgen.h because we need dirname() we immediately + * undefine basename() since libgen.h defines it as a macro to the XDG + * version which is really broken. */ #include <libgen.h> #undef basename + #include "sd-bus.h" #include "log.h" #include "util.h" |