systemd/mkosi.postinst
Daan De Meyer d8067d4041 mkosi: Add a postinstall script to setup .gdbinit.
systemd is compiled with relative source file paths so we need to
issue a directory command to make sure gdb can find systemd's
source files. Let's put this in a .gdbinit file so it's executed
automatically when we run gdb.
2021-01-30 13:28:34 +00:00

6 lines
81 B
Bash
Executable file

#!/bin/sh
set -e
mkdir -p /root/build
echo "directory /root/build" > ~/.gdbinit