deayalas / google-code-prettify

Automatically exported from code.google.com/p/google-code-prettify
Apache License 2.0
0 stars 0 forks source link

Bashisms in Makefile #183

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use dash as /bin/sh instead of bash
2. make
3. Get error from dash

What is the expected output? What do you see instead?

I'm expecting the build process to finish without errors.

Instead:

/bin/sh: Syntax error: Bad fd number
make: *** [distrib/prettify-small.tar] Error 2

This can be fixed by adding

SHELL := /bin/bash

at the top of the Makefile

Original issue reported on code.google.com by paul.tot...@gmail.com on 2 Jan 2012 at 8:55

GoogleCodeExporter commented 9 years ago
Thanks for the patch.  Included at 
http://code.google.com/p/google-code-prettify/source/detail?r=205#

Original comment by mikesamuel@gmail.com on 30 Mar 2012 at 4:58