[ALLY] system/options/home
[1/1] from: peoyli::algonet::se at: 16-Dec-2000 0:05
Hi,
Noticed recently that system/options/home is set incorrect in REBOL/View
on at least the Solaris x86 platform:
REBOL_VIEW=/usr/local/rebol/home
REBOL_HOME=/usr/local/rebol/home
export REBOL_VIEW
export REBOL_HOME
./rebol
(close demo)
REBOL/View 0.10.38.10.2 28-Nov-2000
Copyright 2000 REBOL Technologies. All rights reserved.
>> system/options/home
== %/root/view/
>>
The work-around I have used is to set system/options/home manually in my
user.r (since my REBOL environment is dependent on this setting), but this
breaks the platform-compatibility for the rest of the systems.
REBOL [
Title: "User Preferences loader"
Date: 28-Oct-2000
]
system/options/home: %/usr/local/rebol/home
do join system/options/home "user.r"
/PeO