Edit

kc3-lang/libqrencode/autogen.sh

Branch :

  • Show log

    Commit

  • Author : fukuchi
    Date : 2006-11-17 16:59:27
    Hash : bb693a04
    Message :

  • autogen.sh
  • #!/bin/sh
    
    set -e
    
    if [ -d /usr/local/share/aclocal ]; then
        ACLOCAL_DIR=/usr/local/share/aclocal
    else if [ -d /usr/share/aclocal ]; then
        ACLOCAL_DIR=/usr/share/aclocal
        fi
    fi
    
    if [ ! -d use ]; then
        mkdir use
    fi
    
    aclocal -I $ACLOCAL_DIR
    
    libtoolize --automake --copy
    automake --add-missing --copy
    
    autoconf