[comp.soft-sys.andrew] Bug in patch 7 "contrib" Imakefile for people not running AMS

guy@auspex.auspex.com (Guy Harris) (09/30/90)

The Imakefile in "contrib" insists on making "eatmail" even if AMS_ENV
is not defined; it won't build, as it depends on AMS include files that
aren't installed if AMS isn't built.  A fix:

*** contrib/Imakefile.dist	Thu Sep 27 16:56:55 1990
--- contrib/Imakefile	Sat Sep 29 11:41:13 1990
***************
*** 1,3 ****
  #define IHaveSubdirs
  SUBDIRS = compress hyplink wpedit ltext m3text \
! 	mtext ptext rctext rmtext tm time eatmail
--- 1,8 ----
  #define IHaveSubdirs
+ 
+ #ifdef	AMS_ENV
+ EATMAIL = eatmail
+ #endif /* AMS_ENV */
+ 
  SUBDIRS = compress hyplink wpedit ltext m3text \
! 	mtext ptext rctext rmtext tm time $(EATMAIL)