Sergey Matveychuk wrote at 14:24 +0400 on Jul 12, 2006: > Both -m and -M works fine but do different things. -m pass its argument > as make file argument(s) and -M pass its argument as environment > variable(s). You can't set make variable with environment variable. They > are different! > > -M has never worked as you expected. You can test it with a command: > %cd /usr/ports/www/apache13 > %env APACHE_HARD_SERVER_LIMIT=1024 make > against of > % make APACHE_HARD_SERVER_LIMIT=1024 > > I think you confuse the two variables types.
This is incorrect. make(1) looks at the environment for variables. See the man page. If you tested your example, you'd see that it works fine. make APACHE_HARD_SERVER_LIMIT=22 -V CFLAGS -O2 -fno-strict-aliasing -pipe -DDOCUMENT_LOCATION=\\\\\"/usr/local/www/data\\\\\" -DDEFAULT_PATH=\\\\\"/bin:/usr/bin:/usr/local/bin\\\\\" -DHARD_SERVER_LIMIT=22 env APACHE_HARD_SERVER_LIMIT=22 make -V CFLAGS -O2 -fno-strict-aliasing -pipe -DDOCUMENT_LOCATION=\\\\\"/usr/local/www/data\\\\\" -DDEFAULT_PATH=\\\\\"/bin:/usr/bin:/usr/local/bin\\\\\" -DHARD_SERVER_LIMIT=22 _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"