Source-Changes archive

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

Re: CVS commit: othersrc/bootstrap-pkgsrc



In FreeBSD this will not work. I had a look at the bootstrap script and it
doesn't have -I../nbcompat anymore,
which results in the fact that pax can't be compiled anymore. The new
inclusion path would be ${prefix}/include but
libnbcompat only makes in bootstrap, it doesn't install. A simple patch is
provided below.

Index: bootstrap
===================================================================
RCS file: /cvsroot/othersrc/bootstrap-pkgsrc/bootstrap,v
retrieving revision 1.77
diff -u -r1.77 bootstrap
--- bootstrap   2003/10/04 16:28:48     1.77
+++ bootstrap   2003/10/04 19:02:29
@@ -397,7 +397,7 @@

 # build libnbcompat
 echo_msg "Building libnbcompat"
-run_cmd "(cd libnbcompat; $shprog ./configure --prefix=$prefix && make)"
+run_cmd "(cd libnbcompat; $shprog ./configure --prefix=$prefix && make &&
make install)"

 # bootstrap tnftp
 case "$DEBIAN" in


> Module Name: othersrc
> Committed By: reed
> Date: Sat Oct  4 16:28:48 UTC 2003
>
> Modified Files:
> othersrc/bootstrap-pkgsrc: bootstrap
>
> Log Message:
> Use newly installed libnbcompat and bmake (instead of make). For some
reason,
> under BSD/OS, a "make clean" was cleaning files after builds and before
> installs. (Okay'd by grant.)
>
>
> To generate a diff of this commit:
> cvs rdiff -r1.76 -r1.77 othersrc/bootstrap-pkgsrc/bootstrap
>
> Please note that diffs are not public domain; they are subject to the
> copyright notices on the relevant files.
>
>




Home | Main Index | Thread Index | Old Index