Skip to content

Commit

Permalink
Revert previous 2 commits trying to change autogen.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf committed May 31, 2019
1 parent 05f201e commit a4c2d4c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
#!/bin/bash
#!/bin/sh

if ! command autoreconf; then
tmp=`which autoreconf`
if [ "$tmp" = "" ]; then
echo "ERROR: You need to install autoconf!"
exit 1
fi

if ! command intltoolize; then
tmp=`which intltoolize`
if [ "$tmp" = "" ]; then
echo "ERROR: You need to install intltool!"
exit 1
fi

if ! command libtoolize; then
tmp=`which libtoolize`
if [ "$tmp" = "" ]; then
echo "ERROR: You need to install libtool!"
exit 1
fi
Expand Down

0 comments on commit a4c2d4c

Please sign in to comment.