Good point!

I extended your example by an include directive such as:

tmp/folder/Makefile
-------------------------------
include folder/hello

all:
        pwd
-------------------------------

tmp/folder/hello
-------------------------------
hello:
        echo "Hello World!"
-------------------------------


I consider the include directive in a Makefile as an equivalent to the
LicenseText command
(file:///usr/share/doc/nsis/Docs/Chapter4.html#4.8.1.26) in a .nsi script.

The !insertmacro MUI_PAGE_LICENSE "folder/COPYING" is going to be
expanded and the expansion amongst others include the command
LicenseText "folder/COPYING". So the include folder/hello in the above
Makefile would be the equivalent of LicenseText "folder/COPYING"
respectively !insertmacro MUI_PAGE_LICENSE "folder/COPYING" in your .nsi
script.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to