Changes between Initial Version and Version 1 of Ticket #41904


Ignore:
Timestamp:
Dec 23, 2013, 9:02:48 PM (10 years ago)
Author:
mf2k (Frank Schima)
Comment:

In the future, please use WikiFormatting and Cc the port maintainers (port info --maintainers notmuch).

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #41904

    • Property Owner changed from macports-tickets@… to yeled@…
  • Ticket #41904 – Description

    initial v1  
    11Notmuch fails to build, erring out in the make process with
    22
    3 
     3{{{
    44[...]
    55emacs/coolj.el emacs/notmuch-print.el > emacs/.eldeps.tmp && \
     
    77mkdir: .deps/.: No such file or directory
    88make: *** [command-line-arguments.o] Error 1
     9}}}
    910
    1011A similar issue with brew users revealed that mkdir under 10.9 fails with 'mkdir -p .deps/.'.  This worked under 10.8 and previous.    The suggestion from the brew post (see http://notmuch.198994.n3.nabble.com/Build-broken-on-OS-X-10-9-td4029169.html) is to replace the two '@mkdir -p .deps/.' lines in Makefile.local with '@mkdir -p .deps/$(patsubst %/.,%,$(@D))'.  This seems to work for me.