Skip to content

Commit

Permalink
Merge pull request #529 from danyocom/master
Browse files Browse the repository at this point in the history
Changed util scripts to depend on sh instead of bash
  • Loading branch information
kangax committed Feb 24, 2015
2 parents eb8f50b + 696be0e commit 1c1d93e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion util/cairo_include.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh

# Make pkg-config lookup include files from the build directory.
export PKG_CONFIG_PATH=$(cd "$(dirname "$0")"; pwd)/../build_cairo/lib/pkgconfig;
Expand Down
2 changes: 1 addition & 1 deletion util/has_cairo_freetype.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh

has_freetype() {
pkg-config cairo --cflags-only-I | grep freetype2
Expand Down
2 changes: 1 addition & 1 deletion util/has_lib.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
has_lib() {
local regex="lib$1.+(so|dylib)"

Expand Down
2 changes: 1 addition & 1 deletion util/lib_lookup.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh

# Make pkg-config lookup include files from the build directory.
export PKG_CONFIG_PATH=$(cd "$(dirname "$0")"; pwd)/../build_cairo/lib/pkgconfig;
Expand Down

0 comments on commit 1c1d93e

Please sign in to comment.