meganz / MEGAsync

Easy automated syncing between your computers and your MEGA Cloud Drive
Other
1.65k stars 281 forks source link

make install doesn't install client in Solus #77

Open PerfMonk opened 7 years ago

PerfMonk commented 7 years ago

I have download from the git repository and compiled megasync under solus linux. The "make install" doesn't copy the megasync client in /usr/bin directory.

Plus the note at the bottom of the md readme talk about "solum" instead of solus.

Regards, Bernard

polmr commented 7 years ago

Apologies for the late reply. We would need to know what steps did you follow and what does make install do. Also, the output of "make install -n" would be useful

polmr commented 7 years ago

Replacing in src/MEGASync/MEGASync.pro

unix:!macx {
TARGET = megasync
}

by

unix:!macx {
TARGET = megasync
isEmpty(PREFIX) {
PREFIX = /usr
}
target.path = $$PREFIX/bin
INSTALLS += target
}

should fix that