Archive: compiling under linux


compiling under linux
Hello,

I'm trying to compile my .nsi-files at my linux server.
But i'm a loser with linux :cry:

@ http://webaugur.com/dave/blogger/200...-on-linux.html
i found

You may download my native NSIS build for Linux made on 2004-07-08 under Fedora Core 2
...
@my linux server there is running Fedora Core 3.
So i have placed all the files and i'm running the makensis-script.

./makensis

I get this fould : Can't open script "$*"

This is the script :
#!makensis.exe $*


So, my question :
What is the meaning of $* in the script ?

It should be translated to all of the parameters you pass to the script. If it doesn't work, try replacing the script with:

#!/bin/bash
./makensis.exe $*
If that doesn't work either, just call makensis.exe directly.