mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ide: Fixed minor var installation issue in posix
git-svn-id: svn://ultimatepp.org/upp/trunk@14405 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
7a74c60ee0
commit
c657f9de9c
1 changed files with 4 additions and 6 deletions
|
|
@ -46,7 +46,7 @@ bool Install(bool& hasvars)
|
|||
else {
|
||||
if(name != "uppsrc")
|
||||
b << ';' << uppsrc;
|
||||
if(!FileExists(a))
|
||||
if(!FileExists(a) && name != "bazaar")
|
||||
SaveFile(a,
|
||||
"UPP = " + AsCString(b) + ";\r\n"
|
||||
"OUTPUT = " + AsCString(out) + ";\r\n"
|
||||
|
|
@ -80,12 +80,10 @@ bool Install(bool& hasvars)
|
|||
String myapps = (DirectoryExists(GetExeDirFile("uppsrc")) ? GetExeDirFile : GetHomeDirFile)("MyApps");
|
||||
|
||||
for(pass = 0; pass < 2; pass++) {
|
||||
if(pass) {
|
||||
if(pass && bazaar.GetCount()) {
|
||||
MakeAssembly(bazaar, "examples-bazaar");
|
||||
MakeAssembly(myapps);
|
||||
String h = uppsrc;
|
||||
uppsrc = bazaar + ';' + uppsrc;
|
||||
MakeAssembly(myapps, "MyApps-bazaar");
|
||||
uppsrc = h;
|
||||
MakeAssembly(myapps + ";" + bazaar, "MyApps-bazaar");
|
||||
}
|
||||
#ifdef PLATFORM_COCOA
|
||||
String app = GetAppFolder();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue