if ($answer_counter == 1): ?>
endif; ?>
Um dos scripts de pacote do kernel não estava funcionando direito, então ele estava tentando copiar o crypto.master e falhar. Abaixo está um patch que fiz para consertá-lo, embora o pacote fonte ainda não inclua as pastas debian e debian.master fora do arquivo tar como os pacotes fonte oficiais do kernel do Ubuntu.
--- /usr/share/kernel-package/ruleset/targets/source.mk 2009-08-21 09:47:53.000000000 -0400
+++ /usr/share/kernel-package/ruleset/targets/source.mkmod 2011-02-28 14:42:22.000000000 -0500
@@ -64,12 +64,10 @@ debian/stamp/install/$(s_package):
####
######################################################################
ifneq ($(strip $(int_follow_symlinks_in_src)),)
- -tar cfh - $$(echo * | sed -e 's/ debian//g' -e 's/\.deb//g' ) | \
- (cd $(SRCDIR); umask 000; tar xpsf -)
+ -(umask 000; find . -mindepth 1 -maxdepth 1 -not -name '*.deb' -not -name 'debian*' -exec cp -Lr {} $(SRCDIR) \;; )
(cd $(SRCDIR)/include; rm -rf asm ; )
else
- -tar cf - $$(echo * | sed -e 's/ debian//g' -e 's/\.deb//g' ) | \
- (cd $(SRCDIR); umask 000; tar xspf -)
+ -(umask 000; find . -mindepth 1 -maxdepth 1 -not -name '*.deb' -not -name 'debian*' -exec cp -r {} $(SRCDIR) \;; )
(cd $(SRCDIR)/include; rm -f asm ; )
endif
$(install_file) debian/changelog $(SRCDIR)/Debian.src.changelog