0c0ccb7c74
Reverse changes in commit 7d1591a that broke support for
dpkg (specifically dpkg-buildpackage couldn't run as debian/control was
not automatically generated).
15 lines
405 B
Bash
Executable File
15 lines
405 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
# Generate list of files in debian/ to distribute.
|
|
(echo '# Automatically generated by boot.sh (from Git tree).' &&
|
|
printf 'EXTRA_DIST += \\\n' &&
|
|
git ls-files debian | grep -v '^debian/\.gitignore$' |
|
|
sed -e 's/\(.*\)/ \1 \\/' -e '$s/ \\//') > debian/automake.mk
|
|
|
|
cat debian/control.in > debian/control
|
|
|
|
# Bootstrap configure system from .ac/.am files
|
|
autoreconf --install --force
|