wmdiem / euclid-wm

Automatically exported from code.google.com/p/euclid-wm
5 stars 2 forks source link

Makefile generates Fakeroot/PKGBUILD error #11

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Thanks. It's done. 

Original comment by wmd...@gmail.com on 26 Jun 2010 at 1:59