[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

wrong install in proto/Makefile



In proto/Makefile{,.in} there is a context:

        cd $(srcdir)/db; \
        for x in aliases fqdnaliases dbases.conf localnames routes \
                 smtp-policy.* kill-headers ;   \
        do              \
                $(INSTALL) -m 644 $$x $$MAILVAR/db/proto/$$x ; \
        done ; )

If $INSTALL was configure'd as ".././install-sh" (gnu install not found)
then from within .../db it is not accessibe.  I'd suggest to change this
like:

        for x in db/aliases db/fqdnaliases db/dbases.conf db/localnames \
                 db/routes db/smtp-policy.* db/kill-headers ;   \
        do              \
                $(INSTALL) -m 644 $$x $$MAILVAR/db/proto/$$x ; \
        done ; )

Eugene