github.com/rkt/rkt@v1.30.1-0.20200224141603-171c416fac02/autogen.sh (about)

     1  #!/bin/sh
     2  
     3  set -e
     4  
     5  topdir=$(dirname $0)
     6  cd $topdir
     7  
     8  autoreconf --install --warnings=all --force
     9  
    10  args=""
    11  if [ -f "$topdir/.config.args" ]; then
    12  	args="$(cat $topdir/.config.args)"
    13  fi
    14  
    15  echo
    16  echo "----------------------------------------------------------------"
    17  echo "Initialized build system. For a common configuration please run:"
    18  echo "----------------------------------------------------------------"
    19  echo
    20  echo "$topdir/configure $args"
    21  echo