From 18e4e38540c8c31163378618915a0b50c27bfeac Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 22 Apr 2017 21:02:43 +0200 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6107044..3175dab 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,14 @@ __CMake__ wants `DESTDIR` instead: - 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 ```