Update README.md

This commit is contained in:
probonopd
2017-04-22 21:02:43 +02:00
committed by GitHub
parent 5f2d450c50
commit 18e4e38540
+8
View File
@@ -107,6 +107,14 @@ __CMake__ wants `DESTDIR` instead:
- make DESTDIR=appdir install ; find appdir/ - make DESTDIR=appdir install ; find appdir/
``` ```
__autotools__ (the dinosaur that spends precious minutes "checking...") wants `DESTDIR` too but insists on an absolute link which we can feed it using readlink:
```
- ./configure --prefix=/usr
- make -j4
- make install DESTDIR=$(readlink -f appdir) ; find appdir/
```
Caution if you encounter Caution if you encounter
``` ```