Am Samstag, 25. März 2006 12:56 schrieb Martin Michlmayr: > > DEB_MAKE_CHECK_TARGET unset, not running checks
This is actually not the problem. > > make -C . "" This is. > > make: *** empty string invalid as file name. Stop. > > make: *** [common-install-impl] Error 2 The problem here is this line in the debian/rules: DEB_MAKE_INSTALL_TARGET = "" This happened to work in previous releases because the tests were performed using shell code, but obviously double quotes have no special meaning for make. Just change it to DEB_MAKE_INSTALL_TARGET = and it will be fine.

