chef / dep-selector-libgecode

Bundled Gecode Libraries for dep-selector
Apache License 2.0
11 stars 26 forks source link

./configure fails because of bashisms #46

Closed bougyman closed 9 years ago

bougyman commented 9 years ago

The shebang in the ./configure script is #!/bin/sh, however there are many bashisms used in it. This causes a syntax error on line 11561 with dash, ash, and other minimal sh providers, and the script cannot proceed, building stops. This shebang should be #!/bin/bash, at which point everything works well.

coderanger commented 9 years ago

Hmm, not sure we want to fix bugs in actual gecode. The point is to vendor it as is to make it easier to install, not to take over management of gecode as a library.

bougyman commented 9 years ago

Ah, then this issue is on the wrong project. Will add it to upstream gecode. Thanks.