tags 664534 + patch thanks Attached is an updated patch that adds a "make clean" call after configure.
Felix
diff -u unixodbc-gui-qt-2.3.0/debian/rules unixodbc-gui-qt-2.3.0/debian/rules --- unixodbc-gui-qt-2.3.0/debian/rules +++ unixodbc-gui-qt-2.3.0/debian/rules @@ -10,13 +10,13 @@ dh $@ override_dh_auto_configure: autotools - # remove all moc-autogenerated files, without which this won't build - # with Qt4. - rm -f odbcinstQ4/mC*.cpp # Add here commands to configure the package. CXXFLAGS="-g -O2 -pipe" \ dh_auto_configure -- --with-qt_dir_include=/usr/include/qt4 \ --enable-static --without-pth + # clean sources to remove all moc-autogenerated files, + # without which this won't build with Qt4. + make clean override_dh_auto_clean: dh_auto_clean

