The following issue has been SUBMITTED. ====================================================================== http://bugs.librdf.org/mantis/view.php?id=506 ====================================================================== Reported By: ssuominen Assigned To: ====================================================================== Project: Rasqal RDF Query Library Issue ID: 506 Category: portability Reproducibility: always Severity: trivial Priority: high Status: new Query Language: ====================================================================== Date Submitted: 2012-05-19 20:53 Last Modified: 2012-05-19 20:53 ====================================================================== Summary: configure.ac has bash -specific (non-POSIX) == syntax Description: Line 1124 of configure.ac has this:
if test "$random_approach" == none; then But it should have this: if test "$random_approach" = none; then As in, change the == to = This was reported downstream here, http://bugs.gentoo.org/416659 This will cause problems for example, if /bin/sh is dash Or BSD systems Or any Unix system with /bin/sh not bash Steps to Reproduce: . Additional Information: . ====================================================================== Issue History Date Modified Username Field Change ====================================================================== 2012-05-19 20:53 ssuominen New Issue ====================================================================== _______________________________________________ redland-dev mailing list [email protected] http://lists.librdf.org/mailman/listinfo/redland-dev
