'fix-install-headers.sh' should respect DESTDIR environment variable (#4978)
authorFabianWolff <fabi.wolff@arcor.de>
Tue, 1 Sep 2020 05:44:18 +0000 (07:44 +0200)
committerGitHub <noreply@github.com>
Tue, 1 Sep 2020 05:44:18 +0000 (22:44 -0700)
commita276c5259782f867584bdd5e6e5cd50adc3c5dae
tree1d9fa12cf9fd1f1cbce64ddb8f3ea2c87a07844a
parent9b7f2b6b541f192acf2dc525076a4aa0e995be14
'fix-install-headers.sh' should respect DESTDIR environment variable (#4978)

When using CMake with Unix Makefiles, one can invoke `make install` as
```
make install DESTDIR=/a/b/c
```
so that the files will be installed into `$DESTDIR$CMAKE_INSTALL_PREFIX` (see the [documentation](https://cmake.org/cmake/help/latest/envvar/DESTDIR.html) for details). This currently doesn't work with the `fix-install-headers.sh` script:
```
[...]
-- Installing: /<<PKGBUILDDIR>>/debian/tmp/usr/include/cvc4/util/integer.h
-- Installing: /<<PKGBUILDDIR>>/debian/tmp/usr/include/cvc4/util/rational.h
find: ‘/usr/include/cvc4/’: No such file or directory
```
Here, `CMAKE_INSTALL_PREFIX` is `/usr` but `DESTDIR` is `/<<PKGBUILDDIR>>/debian/tmp/`.

This commit makes the script consider `DESTDIR` (if it is not set, then `$DESTDIR` will be empty and nothing changes) to fix this issue.

Signed-off-by: Fabian Wolff <fabi.wolff@arcor.de>
src/fix-install-headers.sh