mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-05 06:23:03 +00:00
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>
27 lines
714 B
Makefile
Executable File
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 $@
|