mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-05 17:44:55 -06:00
ide: Install Win32 dir adjustments
git-svn-id: svn://ultimatepp.org/upp/trunk@8202 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
7defd1a885
commit
dbedb18569
1 changed files with 4 additions and 1 deletions
|
|
@ -215,8 +215,11 @@ bool Install()
|
|||
RealizeDirectory(dir2);
|
||||
FileIn in(ipp);
|
||||
String out = GetExeDirFile("out");
|
||||
if(exe.Find("Program Files") >= 0) // We do not want to put 'out' dir into Program Files
|
||||
if(exe.StartsWith(GetProgramsFolder()) || exe.Find("Program Files") >= 0) {
|
||||
// We do not want to put folders dir into Program Files
|
||||
out = GetHomeDirFile("upp.out");
|
||||
dir = GetHomeDirFile("upp.src");
|
||||
}
|
||||
while(!in.IsEof()) {
|
||||
Vector<String> ln = Split(in.GetLine(), '|');
|
||||
if(ln.GetCount() != 4)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue