Only ubuntu has pkg-create-dbgsym package. I've made a patch that solves this problem and won't hurt debian.
With this patch, it can be synced on ubuntu next time. Thanks -- Marco Rodrigues http://Marco.Tondela.org
diff -u libfam-ruby-0.1.3/debian/rules libfam-ruby-0.1.3/debian/rules --- libfam-ruby-0.1.3/debian/rules +++ libfam-ruby-0.1.3/debian/rules @@ -35,7 +35,7 @@ rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. - -$(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean dh_clean @@ -55,33 +55,20 @@ # Build architecture-dependent files here. binary-arch: build install - dh_testdir -a - dh_testroot -a -# dh_installdebconf -a - dh_installdocs -a - dh_installexamples -a -# dh_installmenu -a -# dh_installemacsen -a -# dh_installpam -a -# dh_installinit -a -# dh_installcron -a -# dh_installmanpages -a -# dh_installinfo -a -# dh_undocumented -a - dh_installchangelogs ChangeLog -a - dh_link -a - dh_strip -a - dh_compress -X.rb -a - dh_fixperms -a - # You may want to make some executables suid here. -# dh_suidregister -a -# dh_makeshlibs -a - dh_installdeb -a -# dh_perl -a - dh_shlibdeps -a - dh_gencontrol -a - dh_md5sums -a - dh_builddeb -a + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress -X.rb + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure

