-
When doing an installation using DESTDIR, make still attempts to install the manual page directly in /usr/share/man. I suggest this patch to Makefile.in:
- $(INSTALL) xgalaga.6x.gz $(mandir)/man6/xgalaga.6x.gz
+ $(INSTALL) xgalaga.6x.gz $(DESTDIR)$(mandir)/man6/xgalaga.6x.gz.
2009-09-15 19:03:14 UTC in XGalaga
-
And /usr/games is not very standard, is it? I would place the binaries in $(bindir), i.e. $(prefix)/bin by default. (Probably makes the conversion to automake simpler too.)
2009-09-15 18:57:47 UTC in XGalaga
-
I was going to check if case 2804806 was solved in 2.7.14, but found a new problem even before I got to the place where 2.7.13 failed. To reproduce:
tar xf gsoap_2.7.14.tar.gz
cd gsoap-2.7
mkdir x86_64-unknown-linux-gnu
cd x86_64-unknown-linux-gnu
../configure
make
It builds fine for a while, but then it fails with this message:
Making all in gsoap
make[2]: Entering directory...
2009-09-09 16:21:16 UTC in gSOAP Toolkit
-
When trying to build in a directory different from where the source is unpacked, the build fails. To reproduce:
tar xf gsoap_2.7.13.tar.gz
cd gsoap-2.7
mkdir x86_64-unknown-linux-gnu
cd x86_64-unknown-linux-gnu
../configure
make
It builds fine for a while, but then it fails with this message:
Making all in wsdl
gmake[4]: Entering directory...
2009-06-11 11:58:40 UTC in gSOAP Toolkit