Files
openflow/boot.sh
T
Glen Gibb 0c0ccb7c74 dpkg: restore dpkg support
Reverse changes in commit 7d1591a that broke support for
dpkg (specifically dpkg-buildpackage couldn't run as debian/control was
not automatically generated).
2010-02-26 15:28:48 -08:00

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