mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-11 07:29:38 -05:00
Add BIN_DIR variable to allow packagers to override it
This commit is contained in:
parent
b66f466c7a
commit
b9c174ba8f
@ -112,7 +112,7 @@ linux-* {
|
||||
}
|
||||
|
||||
unix {
|
||||
target.path = "$${PREFIX}/bin"
|
||||
target.path = "$${BIN_DIR}"
|
||||
INSTALLS += target
|
||||
|
||||
data_files.path="$${DATA_DIR}/"
|
||||
|
@ -58,7 +58,7 @@ linux-* {
|
||||
}
|
||||
|
||||
unix {
|
||||
target.path = "$${PREFIX}/bin"
|
||||
target.path = "$${BIN_DIR}"
|
||||
INSTALLS += target
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
unix {
|
||||
isEmpty(PREFIX) { PREFIX = "/usr" }
|
||||
isEmpty(BIN_DIR) { BIN_DIR = "$${PREFIX}/bin" }
|
||||
isEmpty(INC_DIR) { INC_DIR = "$${PREFIX}/include/retroshare06" }
|
||||
isEmpty(LIB_DIR) { LIB_DIR = "$${PREFIX}/lib" }
|
||||
isEmpty(DATA_DIR) { DATA_DIR = "$${PREFIX}/share/RetroShare06" }
|
||||
|
Loading…
Reference in New Issue
Block a user