Bug 849 - make install fails because test -e not supported
Summary: make install fails because test -e not supported
Status: RESOLVED FIXED
Alias: None
Product: Spamassassin
Classification: Unclassified
Component: Building & Packaging (show other bugs)
Version: 2.41
Hardware: Sun Solaris
: P2 minor
Target Milestone: ---
Assignee: Malte S. Stretz
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-07 12:29 UTC by Jeremy Lin
Modified: 2002-09-11 06:38 UTC (History)
0 users



Attachment Type Modified Status Actions Submitter/CLA Status

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy Lin 2002-09-07 12:29:33 UTC
/bin/test on Solaris doesn't support the -e, so make install will fail at

$(LOCAL_RULES_DIR)/local.cf: rules/local.cf
        test -e $@ || \
          $(CP) rules/local.cf $@

I think -w is probably the best alternative.
Comment 1 Malte S. Stretz 2002-09-07 13:09:14 UTC
What? No -e on Solaris? Weird. I'll fix it... 
Comment 2 Malte S. Stretz 2002-09-11 14:38:30 UTC
Ok, it's fixed with the latest big commit I did. We use now -f instead of -e.