mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-30 05:07:05 +00:00
Current scylla-housekeeping support on Ubuntu has bug, it does not installs .service/.timer for Ubuntu 16.04. So fix it to make it work. Fixes #1502 Signed-off-by: Takuya ASADA <syuu@scylladb.com> Tested-by: Amos Kong <amos@scylladb.com> Message-Id: <1471607903-14889-1-git-send-email-syuu@scylladb.com>
20 lines
503 B
Makefile
Executable File
20 lines
503 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
override_dh_auto_build:
|
|
./configure.py --disable-xen --enable-dpdk --mode=release --static-stdc++ --static-thrift --compiler=@@COMPILER@@
|
|
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 @@DH_INSTALLINIT@@
|
|
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=scylla-server-dbg
|
|
%:
|
|
dh $@
|