mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Removed dlsym from Linux package.
Only dlsym64 is completely gone. The dlsym binary must remain to be used by the builder. It just won't appear in the Linux download pacakages anymore.
This commit is contained in:
parent
0be3640360
commit
c387cdeff8
@ -226,8 +226,6 @@ Section "MainSection" SEC01
|
||||
File "installer\files\base\addons\amxmodx\scripting\cmdmenu.sma"
|
||||
File "installer\files\base\addons\amxmodx\scripting\compile.exe"
|
||||
File "installer\files\base\addons\amxmodx\scripting\compile.sh"
|
||||
File "installer\files\base\addons\amxmodx\scripting\dlsym"
|
||||
File "installer\files\base\addons\amxmodx\scripting\dlsym64"
|
||||
File "installer\files\base\addons\amxmodx\scripting\imessage.sma"
|
||||
SetOutPath "$INSTDIR\files\base\scripting\include"
|
||||
File "installer\files\base\addons\amxmodx\scripting\include\amxconst.inc"
|
||||
@ -724,8 +722,6 @@ Section Uninstall
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\mapsmenu.sma"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\mapchooser.sma"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\imessage.sma"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\dlsym64"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\dlsym"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\compile.sh"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\compile.exe"
|
||||
Delete "$INSTDIR\files\base\addons\amxmodx\scripting\cmdmenu.sma"
|
||||
|
@ -41,7 +41,7 @@ public override sealed bool ExcludeCopy(string file)
|
||||
if ( ((file.IndexOf(".exe")!=-1) || (file.IndexOf(".dll")!=-1))
|
||||
&& (!Releaser.IsWindows) )
|
||||
return true;
|
||||
if ( (file.IndexOf("dlsym")!=-1) && (Releaser.IsWindows || Releaser.IsOSX) )
|
||||
if (file.IndexOf("dlsym")!=-1)
|
||||
return true;
|
||||
if (ABuilder.GetFileName(file).CompareTo("svn_version.tpl") == 0)
|
||||
{
|
||||
|
Binary file not shown.
BIN
plugins/dlsym64
BIN
plugins/dlsym64
Binary file not shown.
Loading…
Reference in New Issue
Block a user