You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is a result of the debian packaging or that the Makefile.am is missing something which should create the docs directory. In build-mit/Makefile there are blocks such as:
which create the other directories under build-mit but no similar rule for docs/$(am__dirstamp). If I create the docs directory during the build then the man page is rebuilt from the .pod and the file ends up being included as part of the .deb. If I add the mkdir line in to Makefile.am then the build works. I don't know automake so possibly there is a more correct way to achieve this.
# The manual page is normally generated by the bootstrap script, but add a
# Makefile rule to regenerate it if it is modified.
docs/pam_krb5.5: $(srcdir)/docs/pam_krb5.pod
$(MKDIR_P) docs
pod2man --release="$(VERSION)" --center=pam-krb5 -s 5 \
$(srcdir)/docs/pam_krb5.pod > $@
The text was updated successfully, but these errors were encountered:
Hi,
I'm rebuilding libpam-krb5 from the Ubuntu package source and including a patch for the man page. The compile fails:
I'm not sure if this is a result of the debian packaging or that the Makefile.am is missing something which should create the docs directory. In build-mit/Makefile there are blocks such as:
which create the other directories under build-mit but no similar rule for docs/$(am__dirstamp). If I create the docs directory during the build then the man page is rebuilt from the .pod and the file ends up being included as part of the .deb. If I add the mkdir line in to Makefile.am then the build works. I don't know automake so possibly there is a more correct way to achieve this.
The text was updated successfully, but these errors were encountered: