This never really worked and was horrible to maintain. We need to find something else for documentation, but we will probably have to do it with a separate XML file without any generator. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
5 lines
97 B
Bash
Executable File
5 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p m4/ || exit 1
|
|
autoreconf -i || exit 1
|
|
./configure --enable-debug $* || exit 1
|