changeset 19:7ebd16eeff6b draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/packages/package_bzlib_1_0 commit fdfb58648bf02f85eb59bdb5b2b5d30d6ac116ef-dirty
author bgruening
date Sat, 10 Oct 2015 05:01:07 -0400
parents 0c1e5777743b
children 03b71df28ba2
files tool_dependencies.xml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tool_dependencies.xml	Sat Oct 10 04:59:14 2015 -0400
+++ b/tool_dependencies.xml	Sat Oct 10 05:01:07 2015 -0400
@@ -5,7 +5,7 @@
                 <!-- first action is always downloading -->
                 <action type="download_by_url">http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz</action>
                 <action type="shell_command"><![CDATA[
-                    if [ "$(uname -s)" == "Linux" ]
+                    if [ "$(uname -s)" = "Linux" ]
                     then
                         make -f Makefile-libbz2_so &&
                         make &&
@@ -13,7 +13,7 @@
                         cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 &&
                         cp -a libbz2.so* $INSTALL_DIR/bzlib/lib &&
                         ln -s libbz2.so.1.0 $INSTALL_DIR/bzlib/lib/libbz2.so
-                    elif [ "$(uname -s)" == "Darwin" ]
+                    elif [ "$(uname -s)" = "Darwin" ]
                     then
                         make &&
                         make install PREFIX=$INSTALL_DIR/bzlib