diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-10-31 23:22:46 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-10-31 23:25:33 +0100 |
commit | 41aad991c4e65c8b9d037dec9894e65a6d81c5f1 (patch) | |
tree | 22ce1fe7e3e5ff19d532c30e3e0b4bf7e2e29f4a | |
parent | fd6d82dd5efc77d3b1264783566a834a9294ac4c (diff) | |
download | aports-41aad991c4e65c8b9d037dec9894e65a6d81c5f1.tar.bz2 aports-41aad991c4e65c8b9d037dec9894e65a6d81c5f1.tar.xz |
testing/check_postgres: fix install location of man page
-rw-r--r-- | testing/check_postgres/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/check_postgres/APKBUILD b/testing/check_postgres/APKBUILD index efdcaaa0da..ac9981d64a 100644 --- a/testing/check_postgres/APKBUILD +++ b/testing/check_postgres/APKBUILD @@ -19,10 +19,10 @@ build() { perl Makefile.PL \ INSTALL_BASE=/usr \ - INSTALLMAN1DIR=/usr/share/man \ - INSTALLSITEMAN1DIR=/usr/share/man \ - INSTALLMAN3DIR=/usr/share/man \ - INSTALLSITEMAN3DIR=/usr/share/man + INSTALLMAN1DIR=/usr/share/man/man1 \ + INSTALLSITEMAN1DIR=/usr/share/man/man1 \ + INSTALLMAN3DIR=/usr/share/man/man3 \ + INSTALLSITEMAN3DIR=/usr/share/man/man3 make } |