Files
scylladb/dist/debian/rules.in
Takuya ASADA 3d671baf3b dist/debian: define dh_auto_configure task correctly
We mistakenly placed ./configure.py to dh_auto_build, but it's should place at
dh_auto_configure.
This bug causes issue #2505, since we haven't defined dh_auto_configure task yet(It seems running cmake on top of the dir is one of default behavior of dh_auto_configure).

Fixes #2505

Signed-off-by: Takuya ASADA <syuu@scylladb.com>
Message-Id: <1497866068-32097-1-git-send-email-syuu@scylladb.com>
2017-06-19 12:58:59 +03:00

27 lines
714 B
Makefile
Executable File

#!/usr/bin/make -f
override_dh_auto_configure:
./configure.py --enable-dpdk --mode=release --static-stdc++ --static-thrift --compiler=@@COMPILER@@
override_dh_auto_build:
ninja
override_dh_auto_clean:
rm -rf build/release seastar/build
rm -rf Cql.tokens
rm -rf build.ninja seastar/build.ninja
override_dh_installinit:
dh_installinit --no-start @@DH_INSTALLINIT@@
dh_installinit --no-start --name scylla-housekeeping-daily @@DH_INSTALLINIT@@
dh_installinit --no-start --name scylla-housekeeping-restart @@DH_INSTALLINIT@@
dh_installinit --no-start --name node-exporter @@DH_INSTALLINIT@@
override_dh_installcron:
dh_installcron
override_dh_strip:
dh_strip --dbg-package=scylla-server-dbg
%:
dh $@