When run make install in a fakeroot environment (specifically through makepkg /
PKGBUILD) it errors out. Except for the install line for the ${MANDIR} there is
a -D which creates the DEST in the fakeroot environment (not needed when doing
a clean make && sudo make install). This needs to be added to the Makefile as
it has no effect on the final installation (if you just make && sudo make
install) but errors fakeroot package maintainers (so, all of them).
Explicitly (in Makefile):
- @install -m644 euclid.1 ${DESTDIR}/${SHAREDIR}/${MANDIR}/man1/euclid-wm.1
+ @install -m644 euclid.1 -D ${DESTDIR}/${SHAREDIR}/${MANDIR}/man1/euclid-wm.1
Original issue reported on code.google.com by benjamin...@gmail.com on 26 Jun 2010 at 10:45
Original issue reported on code.google.com by
benjamin...@gmail.com
on 26 Jun 2010 at 10:45