3 messages in net.sourceforge.lists.courier-usersRe: [courier-users] make install problem
FromSent OnAttachments
Sujit ChoudhuryNov 8, 2000 6:43 am 
Tabor J. WellsNov 8, 2000 7:59 am.patch
sureshNov 8, 2000 10:24 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] make install problemActions...
From:Tabor J. Wells (twe@atg.com)
Date:Nov 8, 2000 7:59:14 am
List:net.sourceforge.lists.courier-users
Attachments:

Solaris's /bin/sh test doesn't understand -e. Try the attached patch.

Tabor

--

------------------------------------------------------------------------ Tabor J. Wells twe@atg.com Systems Administrator Art Technology Group http://www.atg.com

*** courier/doc/Makefile.am Wed Oct 18 13:38:40 2000 --- courier/doc/Makefile.am.new Wed Oct 18 13:34:22 2000 *************** *** 169,184 **** install-data-local: install-man do-man-install install-man-extra

do-man-install: ! for f in $(mandir) $(man1dir) $(man7dir) $(man8dir) ; do test -e
$(DESTDIR)$$f && chmod 755 $(DESTDIR)$$f ; done ; exit 0 ! for f in $(man1) ; do test -e $(DESTDIR)$(man1dir)/$$f && chmod 644
$(DESTDIR)$(man1dir)/$$f ; done ; exit 0 ! for f in $(man5) ; do test -e $(DESTDIR)$(man5dir)/$$f && chmod 644
$(DESTDIR)$(man5dir)/$$f ; done ; exit 0 ! for f in $(man7) ; do test -e $(DESTDIR)$(man7dir)/$$f && chmod 644
$(DESTDIR)$(man7dir)/$$f ; done ; exit 0 ! for f in $(man8) ; do test -e $(DESTDIR)$(man8dir)/$$f && chmod 644
$(DESTDIR)$(man8dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(mandir) $(man1dir) $(man5dir) $(man7dir)
$(man8dir) ; do test -e $(DESTDIR)$$f && chown bin $(DESTDIR)$$f && chgrp bin
$(DESTDIR)$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man1) ; do test -e
$(DESTDIR)$(man1dir)/$$f && chown bin $(DESTDIR)$(man1dir)/$$f && chgrp bin
$(DESTDIR)$(man1dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man5) ; do test -e
$(DESTDIR)$(man5dir)/$$f && chown bin $(DESTDIR)$(man5dir)/$$f && chgrp bin
$(DESTDIR)$(man5dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man7) ; do test -e
$(DESTDIR)$(man7dir)/$$f && chown bin $(DESTDIR)$(man7dir)/$$f && chgrp bin
$(DESTDIR)$(man7dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man8) ; do test -e
$(DESTDIR)$(man8dir)/$$f && chown bin $(DESTDIR)$(man8dir)/$$f && chgrp bin
$(DESTDIR)$(man8dir)/$$f ; done ; exit 0

BUILT_SOURCES=status.html

--- 169,184 ---- install-data-local: install-man do-man-install install-man-extra

do-man-install: ! for f in $(mandir) $(man1dir) $(man7dir) $(man8dir) ; do test -d
$(DESTDIR)$$f && chmod 755 $(DESTDIR)$$f ; done ; exit 0 ! for f in $(man1) ; do test -f $(DESTDIR)$(man1dir)/$$f && chmod 644
$(DESTDIR)$(man1dir)/$$f ; done ; exit 0 ! for f in $(man5) ; do test -f $(DESTDIR)$(man5dir)/$$f && chmod 644
$(DESTDIR)$(man5dir)/$$f ; done ; exit 0 ! for f in $(man7) ; do test -f $(DESTDIR)$(man7dir)/$$f && chmod 644
$(DESTDIR)$(man7dir)/$$f ; done ; exit 0 ! for f in $(man8) ; do test -f $(DESTDIR)$(man8dir)/$$f && chmod 644
$(DESTDIR)$(man8dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(mandir) $(man1dir) $(man5dir) $(man7dir)
$(man8dir) ; do test -d $(DESTDIR)$$f && chown bin $(DESTDIR)$$f && chgrp bin
$(DESTDIR)$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man1) ; do test -f
$(DESTDIR)$(man1dir)/$$f && chown bin $(DESTDIR)$(man1dir)/$$f && chgrp bin
$(DESTDIR)$(man1dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man5) ; do test -f
$(DESTDIR)$(man5dir)/$$f && chown bin $(DESTDIR)$(man5dir)/$$f && chgrp bin
$(DESTDIR)$(man5dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man7) ; do test -f
$(DESTDIR)$(man7dir)/$$f && chown bin $(DESTDIR)$(man7dir)/$$f && chgrp bin
$(DESTDIR)$(man7dir)/$$f ; done ; exit 0 ! test -w /etc || exit 0 ; for f in $(man8) ; do test -f
$(DESTDIR)$(man8dir)/$$f && chown bin $(DESTDIR)$(man8dir)/$$f && chgrp bin
$(DESTDIR)$(man8dir)/$$f ; done ; exit 0

BUILT_SOURCES=status.html