Bugs item #1379618, was opened at 2005-12-13 18:03 Message generated for change (Settings changed) made by bogdan_iancu You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1379618&group_id=139143
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Daniel Flinkmann (dflinkmann) >Assigned to: Bogdan (bogdan_iancu) Summary: Solaris 2.8/sparc64 : Makefile installation failure Initial Comment: When trying to gmake install the current 1.0.0 version of OpenSER, the install scripts breaks. Fix: Makefile: Row 355: if [ -z $(TLS) ]; then Row 356: echo "No TLS scripts installed" ; needs to be changed to Row 355: if [ -z "$(TLS)" ]; then Row 356: echo "No TLS scripts installed" ; So that the solaris shell can check an eventually zero length $(TLS) variable. That's it ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1379618&group_id=139143 _______________________________________________ Devel mailing list [email protected] http://openser.org/cgi-bin/mailman/listinfo/devel
