Control: tags -1 + patch I believe the following patch will solve the issue.
diff --git a/debian/rules b/debian/rules index 7b8c06b..cec6a63 100755 --- a/debian/rules +++ b/debian/rules @@ -29,7 +29,11 @@ override_dh_auto_configure: cd cmake-build && cmake ../src -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS="${CMAKE_C_FLAGS} $(CFLAGS)" -DCMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS} $(CXXFLAGS)" override_dh_auto_build: - cd cmake-build && $(MAKE) -j$(NUMCPUS) + cd cmake-build && $(MAKE) -j$(NUMCPUS) VERBOSE=true + +override_dh_auto_clean: + dh_auto_clean + $(RM) -r cmake-build DESTDIR=../debian/antpm/ override_dh_install: In addition, it will tell the build to show the compiler flags, for the log parser to see. -- Happy hacking Petter Reinholdtsen