setup / postinastall script question

2004-07-09 Thread Gerrit P. Haase
Hello, will it work with setup.exe to set the PATH in a postinstall script? I.e.: export PATH=/usr/X11R6/bin:$PATH * do something * Gerrit -- =^..^=

Re: setup / postinastall script question

2004-07-09 Thread Igor Pechtchanski
On Fri, 9 Jul 2004, Gerrit P. Haase wrote: Hello, will it work with setup.exe to set the PATH in a postinstall script? A postinstall script is just like any other shell script. I don't see any reason why it wouldn't. I.e.: export PATH=/usr/X11R6/bin:$PATH * do something * Gerrit Well,

Re: setup / postinastall script question

2004-07-09 Thread Corinna Vinschen
On Jul 9 09:46, Igor Pechtchanski wrote: On Fri, 9 Jul 2004, Gerrit P. Haase wrote: export PATH=/usr/X11R6/bin:$PATH Well, postinstall scripts are usually run with /bin/sh, which means that you'd have to use the following syntax: PATH=/usr/X11R6/bin:$PATH export PATH Erm... `export

Re: setup / postinastall script question

2004-07-09 Thread Igor Pechtchanski
On Fri, 9 Jul 2004, Corinna Vinschen wrote: On Jul 9 09:46, Igor Pechtchanski wrote: On Fri, 9 Jul 2004, Gerrit P. Haase wrote: export PATH=/usr/X11R6/bin:$PATH Well, postinstall scripts are usually run with /bin/sh, which means that you'd have to use the following syntax:

Re: setup / postinastall script question

2004-07-09 Thread Christopher Faylor
On Fri, Jul 09, 2004 at 10:45:39AM -0400, Igor Pechtchanski wrote: On Fri, 9 Jul 2004, Corinna Vinschen wrote: On Jul 9 09:46, Igor Pechtchanski wrote: On Fri, 9 Jul 2004, Gerrit P. Haase wrote: export PATH=/usr/X11R6/bin:$PATH Well, postinstall scripts are usually run with /bin/sh,