Remove all obsolete code and make it more readable. Nearly all features can now be configured. However, the code doesn't work correctly if udev or systemd is removed. That will be fixed soon, though. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
6 lines
117 B
Bash
Executable File
6 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p m4/ || exit 1
|
|
gtkdocize || exit 1
|
|
autoreconf -i || exit 1
|
|
./configure --enable-debug $* || exit 1
|