Package: automake
Version: 1.16.1-4
Step to procedure:
$ export DEB_BUILD_PROFILE=stage1
$ # Below is none-complete, filled all no-profiles from
$ # https://wiki.debian.org/BuildProfileSpec
$ export DEB_BUILD_PROFILES=stage1,nodoc,nocheck,nobiarch
$ dpkg-buildpackage
dh_installinfo complains that doc/automake-1.16.info not found.
I need this patch:
----8<----
--- debian/rules.orig 2020-06-20 13:47:36.551860112 +0700
+++ debian/rules 2020-06-20 13:48:07.398980348 +0700
@@ -30,6 +30,7 @@
override_dh_auto_build:
ifeq ($(DEB_BUILD_PROFILE),stage1)
touch doc/automake.info
+ cp doc/automake.info doc/automake-$(version).info
endif
dh_auto_build
---->8------
--
Danh