From: <and...@us...> - 2024-05-30 19:07:02
|
Revision: 7430 http://sourceforge.net/p/nsis/code/7430 Author: anders_k Date: 2024-05-30 19:07:00 +0000 (Thu, 30 May 2024) Log Message: ----------- Make System/Resource.dll reproducible by respecting SOURCE_DATE_EPOCH (patch #312) Modified Paths: -------------- NSIS/trunk/Contrib/System/SConscript NSIS/trunk/Docs/src/history.but Modified: NSIS/trunk/Contrib/System/SConscript =================================================================== --- NSIS/trunk/Contrib/System/SConscript 2024-05-30 18:57:13 UTC (rev 7429) +++ NSIS/trunk/Contrib/System/SConscript 2024-05-30 19:07:00 UTC (rev 7430) @@ -76,4 +76,5 @@ env.Depends(res_target, resources) -env.SharedLibrary('Resource', res_target + res_main) +resource = env.SharedLibrary('Resource', res_target + res_main) +env.MakeReproducible(resource) Modified: NSIS/trunk/Docs/src/history.but =================================================================== --- NSIS/trunk/Docs/src/history.but 2024-05-30 18:57:13 UTC (rev 7429) +++ NSIS/trunk/Docs/src/history.but 2024-05-30 19:07:00 UTC (rev 7430) @@ -10,6 +10,10 @@ \S1{v3.11-cl} Changelog +\S2{} Minor Changes + +\b Make System/Resource.dll reproducible (\W{http://sf.net/p/nsis/patches/312}{patch #312}) + \S2{} Translations \b Updated Finnish (\W{http://sf.net/p/nsis/patches/313}{patch #313}) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |