change target of 'make install' to /usr/... instead of /usr/local/...
This commit is contained in:
parent
29e0e3ace9
commit
bd69c3dd63
11 changed files with 17 additions and 17 deletions
10
README-1.md
10
README-1.md
|
|
@ -170,9 +170,9 @@ This will build the shared library, the executable and the modules.
|
|||
If you ran `make install`, you'll find the installed files here:
|
||||
|
||||
```
|
||||
/usr/local/bin/
|
||||
/usr/local/lib/
|
||||
/usr/local/include/eql5/
|
||||
/usr/bin/
|
||||
/usr/lib/
|
||||
/usr/include/eql5/
|
||||
```
|
||||
|
||||
### 3) Environment
|
||||
|
|
@ -195,9 +195,9 @@ N.B. skip this if you did `sudo make install`
|
|||
You need to create links to EQL5, something like:
|
||||
|
||||
```
|
||||
$ cd /usr/local/lib
|
||||
$ cd /usr/lib
|
||||
$ sudo ln -s ~/eql5/libeql5.1.dylib libeql5.1.dylib
|
||||
$ cd /usr/local/bin
|
||||
$ cd /usr/bin
|
||||
$ sudo ln -s ~/eql5/eql5.app/Contents/MacOS/eql5 eql5
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/
|
||||
MOC_DIR = ./tmp/
|
||||
|
||||
QMAKE_RPATHDIR = /usr/local/lib
|
||||
target.path = /usr/local/bin
|
||||
QMAKE_RPATHDIR = /usr/lib
|
||||
target.path = /usr/bin
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ OBJECTS_DIR = ./tmp/
|
|||
MOC_DIR = ./tmp/
|
||||
|
||||
include.files = eql5/*
|
||||
include.path = /usr/local/include/eql5
|
||||
target.path = /usr/local/lib
|
||||
include.path = /usr/include/eql5
|
||||
target.path = /usr/lib
|
||||
INSTALLS = include target
|
||||
|
||||
msvc {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/help/
|
||||
MOC_DIR = ./tmp/help/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/multimedia/
|
||||
MOC_DIR = ./tmp/multimedia/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/network/
|
||||
MOC_DIR = ./tmp/network/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/quick/
|
||||
MOC_DIR = ./tmp/quick/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/sql/
|
||||
MOC_DIR = ./tmp/sql/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/svg/
|
||||
MOC_DIR = ./tmp/svg/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/webengine/
|
||||
MOC_DIR = ./tmp/webengine/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
macx:QT += network
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/webkit/
|
||||
MOC_DIR = ./tmp/webkit/
|
||||
|
||||
target.path = /usr/local/lib
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
|
||||
macx:QT += network
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue