Paul R. Ganci
ganci@nurdog.com
Wed May 4 03:39:29 UTC 2005
I tried to compile up and install dcc-dccd-1.3.3 today and ran across
what I believe is a bug in the homedir/Makefile.in file. Namely it seems
to me there is an error in line 38:
INST_HOMEDIR=@installroot@ $(DCC_HOMEDIR)
which should be:
INST_HOMEDIR=@installroot@$(DCC_HOMEDIR)
Note the subtle space after the 2nd @ sign just before the $(DCC_HOMEDIR)
This bug prevents the make install from proceeding properly.
Perhaps I am all wet, but it fixed my install when I patched
homedir/Makefile.in with:
--- dcc-1.3.3/homedir/Makefile.in.orig 2005-04-19 22:13:34.000000000 -0600
+++ dcc-1.3.3/homedir/Makefile.in 2005-05-03 21:20:36.000000000 -0600
@@ -35,7 +35,7 @@
@MAKE_INC2@
HINSTALL =$(INSTALL) $(SET_DCCOWN) -c
-INST_HOMEDIR=@installroot@ $(DCC_HOMEDIR)
+INST_HOMEDIR=@installroot@$(DCC_HOMEDIR)
all:
@:
I am building with RPM on a Fedora Core 1 system so maybe this is just
something peculiar to that distro. I didn't see that anyone else had run
into this. Sorry if this is old news.
--
Paul (ganci@nurdog.com)
More information about the DCC
mailing list