Re: Creating Solaris Packages

2004-11-02 Thread Jason Frank
GNU Make worked just ducky. I'll need today to get the packaging code finished (got some other items on my plate) and hopefully it can be added to CVS. Jason On Nov 2, 2004, at 9:02 AM, Bruce Shaw wrote: I'll add that in. You're absolutely right. I've used /usr/ccs/bin/make. and /usr/xpg4/bin/

RE: Creating Solaris Packages

2004-11-02 Thread Bruce Shaw
I'll add that in. >You're absolutely right. I've used /usr/ccs/bin/make. and /usr/xpg4/bin/make, but haven't built GNU make yet. I'll get that done overnight and see if I don't get better results. Just for the record, this is not documented in README.solaris, and without it, it won't work c

Re: Creating Solaris Packages

2004-11-01 Thread Niels Baggesen
On Mon, Nov 01, 2004 at 12:41:25PM -0600, Jason Frank wrote: > Tested that out too. Same problem exists, it's not passing the prefix > or exec_prefix down either: > > bash-2.05$ make install prefix=`pwd`/pkgroot/ exec_prefix=`pwd`/pkgroot/ For the internal packages that I build I use prefix

Re: Creating Solaris Packages

2004-11-01 Thread Jason Frank
You're absolutely right. I've used /usr/ccs/bin/make. and /usr/xpg4/bin/make, but haven't built GNU make yet. I'll get that done overnight and see if I don't get better results. Just for the record, this is not documented in README.solaris, and without it, it won't work correctly ;-) Jason

Re: Creating Solaris Packages

2004-11-01 Thread Coders
On Mon, 1 Nov 2004 11:16:00 -0600 Jason wrote: JF> I'm currently working on a "real" Solaris package for net-snmp (i,e, JF> using Sun's pkgadd and friends.) The process basically involves JF> installing to a dummy directory, building the package, then JF> substituting in the real directory for

Re: Creating Solaris Packages

2004-11-01 Thread Jason Frank
Tested that out too. Same problem exists, it's not passing the prefix or exec_prefix down either: bash-2.05$ make install prefix=`pwd`/pkgroot/ exec_prefix=`pwd`/pkgroot/ . . . making installlibs in /home/jfrank/net-snmp-5.1.2/snmplib mkdir /opt/net-snmp mkdir: Failed to make directory "/opt/net

RE: Creating Solaris Packages

2004-11-01 Thread Bruce Shaw
This is documented in README.solaris make install prefix=/tmp/net-snmp exec_prefix=/tmp/net-snmp >I'm currently working on a "real" Solaris package for net-snmp (i,e, >using Sun's pkgadd and friends.) The process basically involves >installing to a dummy directory, building the package, then

Creating Solaris Packages

2004-11-01 Thread Jason Frank
I'm currently working on a "real" Solaris package for net-snmp (i,e, using Sun's pkgadd and friends.) The process basically involves installing to a dummy directory, building the package, then substituting in the real directory for the dummy one inside of the newly created package. So, I'm do