Skip to content
Snippets Groups Projects
Commit 9d73562a authored by rds's avatar rds
Browse files

fix simple mistake

parent e6c5609b
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ while read file; do [ ! -f $file ] || rm -r $file; done
zmap_message_out "Running $(which $AUTOUPDATE)"
$AUTOUPDATE || zmap_message_exit "Failed running $AUTOUPDATE"
zmap_message_out "Running $(which $ACLOCAL)"
$ACLOCAL -I . || zmap_message_exit "Failed running $ACLOCAL (first time) export ACLOCAL_FLAGS='-I /<gtkprefix>/share/aclocal'"
$ACLOCAL $DEFAULT_INC || zmap_message_exit "Failed running $ACLOCAL (first time) export ACLOCAL_FLAGS='-I /<gtkprefix>/share/aclocal'"
zmap_message_out "Running $(which $AUTOHEADER)"
$AUTOHEADER --warnings=all || zmap_message_exit "Failed running $AUTOHEADER"
......@@ -64,7 +64,7 @@ if [ "x$NEED_LIBTOOLIZE" == "x$ZMAP_TRUE" ]; then
zmap_message_out "Running $(which $LIBTOOLIZE)"
$LIBTOOLIZE --force --copy || zmap_message_exit "Failed running $LIBTOOLIZE"
zmap_message_out "Running $(which $ACLOCAL) (again)"
$ACLOCAL -I . || zmap_message_exit "Failed running $ACLOCAL (second time) export ACLOCAL_FLAGS='-I /<gtkprefix>/share/aclocal'"
$ACLOCAL $DEFAULT_INC || zmap_message_exit "Failed running $ACLOCAL (second time) export ACLOCAL_FLAGS='-I /<gtkprefix>/share/aclocal'"
fi
zmap_message_out "Running $(which $AUTOMAKE)"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment