From b224bac7749433e784a3dbc90756334cd9016158 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Wed, 30 Sep 2015 01:52:55 +0300 Subject: [PATCH] fix broken export command example $ export PATH = /usr/local/bin:$PATH -bash: export: `=': not a valid identifier -bash: export: `/usr/bin: ....': not a valid identifier $ export PATH=/usr/local/bin:$PATH [no error] --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index bd0cdcfe..5b70a9d4 100644 --- a/index.html +++ b/index.html @@ -680,7 +680,7 @@ USE_OSGPLUGIN(<plugin2>)

For Bourne shells, edit .profile

-
export PATH = /usr/local/bin:$PATH
+
export PATH=/usr/local/bin:$PATH

On 64-bit FreeBSD, there are issues without a 32-bit compiler.