Re: MESON_ARGS

2018-02-20 Thread Dave Horsfall
On Tue, 20 Feb 2018, Walter Schwarzenfeld wrote: There were whitespaces in the Makfile, seems caused this. This dates from PWB/UNIX i.e. about 40 years ago; I wonder if it will ever be fixed? White space is white space, FFS... -- Dave Horsfall DTM (VK2KFU) "Those who don't understand

Re: MESON_ARGS

2018-02-20 Thread Walter Schwarzenfeld
Yes, yes... you,re right. There were whitespaces in the Makfile, seems caused this. ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to

Re: MESON_ARGS

2018-02-20 Thread Mathieu Arnold
ndy. > > Can anyone tell me the right syntax? I do not understand why something like: MESON_ARGS= -Drpm=false MESON_ARGS+=    -Dstemmer=false MESON_ARGS+=    -Dintrospection=false would not work. Also, this should work: MESON_ARGS= -Drpm=false -Dstemmer=false -Dintrospection=false -- Mathieu Arnold signature.asc Description: PGP signature

Re: MESON_ARGS

2018-02-19 Thread Walter Schwarzenfeld
I did not manage to got MESON_ARGS to work (like CONFIGURE_ARGS as above). ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

MESON_ARGS

2018-02-19 Thread Walter Schwarzenfeld
The only way to pass more than one argument from the Makefile to meson I got working is e.g: CONFIGURE_ARGS= -Drpm=false CONFIGURE_ARGS+=    -Dstemmer=false CONFIGURE_ARGS+=    -Dintrospection=false One arg in per row and in the order as in the meson_options.txt. The "normal" way to