FS#9583 - NVClock man pages installed in the wrong directory
Attached to Project:
Arch Linux
Opened by Fabio Aquotte (fabioaquotte) - Friday, 15 February 2008, 15:43 GMT
Last edited by Andreas Radke (AndyRTR) - Monday, 30 June 2008, 16:29 GMT
Opened by Fabio Aquotte (fabioaquotte) - Friday, 15 February 2008, 15:43 GMT
Last edited by Andreas Radke (AndyRTR) - Monday, 30 June 2008, 16:29 GMT
|
Details
The NVClock man page is being installed at
'/usr/share/man/share/man1'
due to the double quotes on the sed command in the PKGBUILD that fixes the manpath (the ${prefix} part is being interpreted as a variable and interpolated). Changing them to single quotes fixes the problem: sed -i 's:${prefix}/man:${prefix}/share/man:' $startdir/src/$pkgname$pkgver/Makefile.in |
This task depends upon
Comment by
Anthony Haslam (ahaslam) - Friday,
21 March 2008, 13:15 GMT
Thank you Fabio.