unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* notmuch-mutt BSD compatibility
@ 2015-05-01  5:24 Jack Peirce
  2015-05-01  5:57 ` David Bremner
  2015-05-01  8:36 ` Stefano Zacchiroli
  0 siblings, 2 replies; 5+ messages in thread
From: Jack Peirce @ 2015-05-01  5:24 UTC (permalink / raw)
  To: notmuch@notmuchmail.org, zack@upsilon.cc

[-- Attachment #1: Type: text/plain, Size: 619 bytes --]

Some of the flags used in the notmuch-mutt script included in the 
contrib directory are not supported by the OpenBSD implementation of 
ln and xargs. 

Please consider this patch which rearranges the arguments to use flags 
compatible with both Linux and BSD implementations of ln/xargs.

Do note that I do not have the ability to test this under Linux right 
now, but I am relatively confident everything should still work fine 
as long as the man pages are correct.

xargs: use -r flag instead of --no-run-if-empty
ln: use -I flag/3rd form of ln command instead of -t flag/4th form

Thanks,
Jack



[-- Attachment #2: notmuch-mutt-bsd-compat.patch --]
[-- Type: text/plain, Size: 532 bytes --]

diff -uNr old/contrib/notmuch-mutt/notmuch-mutt new/contrib/notmuch-mutt/notmuch-mutt
--- old/contrib/notmuch-mutt/notmuch-mutt	Thu Apr 30 23:08:50 2015
+++ new/contrib/notmuch-mutt/notmuch-mutt	Thu Apr 30 23:10:21 2015
@@ -50,7 +50,7 @@
     empty_maildir($maildir);
     system("notmuch search --output=files $dup_option $query"
 	   . " | sed -e 's: :\\\\ :g'"
-	   . " | xargs --no-run-if-empty ln -s -t $maildir/cur/");
+	   . " | xargs -r -I searchoutput ln -s searchoutput $maildir/cur/");
 }
 
 sub prompt($$) {

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-05-04  8:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-01  5:24 notmuch-mutt BSD compatibility Jack Peirce
2015-05-01  5:57 ` David Bremner
2015-05-01  8:36 ` Stefano Zacchiroli
2015-05-02  8:37   ` Tomi Ollila
2015-05-04  8:48   ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).