Skip to content

Commit

Permalink
Remove bash-isms from autogen.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Dec 3, 2016
1 parent bdde065 commit e96eac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogen.sh
@@ -1,10 +1,10 @@
#!/bin/bash
#!/bin/sh

set -e

autoreconf --install

if [[ -d "/mnt/c/Users" ]]; then
if [ -d "/mnt/c/Users" ]; then
# Copy pkg.m4 for Windows 10 bash mode use. If this isn't done,
# you'll PKGCONFIG lines won't be substituted in ./configure
cp /usr/share/aclocal/pkg.m4 m4
Expand Down

0 comments on commit e96eac9

Please sign in to comment.