[Date Prev] [Date Index] [Date Next] [Thread Prev] [Thread Index] [Thread Next]

conserver-8.1.0 rpm build issue

Bryan Stansell bryan@conserver.com
Mon, 19 Jan 2004 07:05:08 -0800 (PST)


If you try and use rpmbuild, things fail because I goofed up a couple
Makefiles.  All works fine with a standard './configure; make',
however.  I've attached a patch you can apply to fix this.  (Big thanks
to Martin Evans for pointing this out)

If anyone sees further problems, please let me know!

Bryan
Index: conserver/Makefile.in
===================================================================
RCS file: /home/bryan/cvsroot/conserver/conserver/Makefile.in,v
retrieving revision 1.19
diff -c -r1.19 Makefile.in
*** conserver/Makefile.in	20 Dec 2003 06:11:53 -0000	1.19
--- conserver/Makefile.in	19 Jan 2004 14:26:20 -0000
***************
*** 6,12 ****
  sbindir = @sbindir@
  sysconfdir = @sysconfdir@
  mandir = @mandir@
! exampledir = @datadir@/examples/conserver
  
  ### Installation programs and flags
  INSTALL = @INSTALL@
--- 6,13 ----
  sbindir = @sbindir@
  sysconfdir = @sysconfdir@
  mandir = @mandir@
! datadir = @datadir@
! exampledir = $(datadir)/examples/conserver
  
  ### Installation programs and flags
  INSTALL = @INSTALL@
Index: conserver.cf/Makefile.in
===================================================================
RCS file: /home/bryan/cvsroot/conserver/conserver.cf/Makefile.in,v
retrieving revision 1.6
diff -c -r1.6 Makefile.in
*** conserver.cf/Makefile.in	20 Dec 2003 06:12:06 -0000	1.6
--- conserver.cf/Makefile.in	19 Jan 2004 14:25:20 -0000
***************
*** 3,9 ****
  prefix = @prefix@
  mandir = @mandir@
  sysconfdir = @sysconfdir@
! exampledir = @datadir@/examples/conserver
  
  ### Installation programs and flags
  INSTALL = @INSTALL@
--- 3,10 ----
  prefix = @prefix@
  mandir = @mandir@
  sysconfdir = @sysconfdir@
! datadir = @datadir@
! exampledir = $(datadir)/examples/conserver
  
  ### Installation programs and flags
  INSTALL = @INSTALL@