From 5e527213a2430bb3018e5eebd909aef294edf9b5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- build/import/libxqilla/configure | 55 ---------------------------------------- 1 file changed, 55 deletions(-) delete mode 100755 build/import/libxqilla/configure (limited to 'build/import/libxqilla/configure') diff --git a/build/import/libxqilla/configure b/build/import/libxqilla/configure deleted file mode 100755 index 5d21907..0000000 --- a/build/import/libxqilla/configure +++ /dev/null @@ -1,55 +0,0 @@ -#! /usr/bin/env bash - -# file : build/import/libxqilla/configure -# license : GNU GPL v2; see accompanying LICENSE file - - -# $1 - out config file -# -# bld_root - build root -# project_name - project name -# - -source $bld_root/dialog.bash - - -$echo -$echo "Configuring external dependency on 'libxqilla' for '$project_name'." -$echo - -$echo -$echo "Would you like to configure dependency on the installed version" -$echo "of 'libxqilla' as opposed to the development build?" -$echo - -installed=`read_y_n y` - -path= -type= - -if [ "$installed" = "n" ]; then - - $echo - $echo "Please enter the 'libxqilla' root directory." - $echo - - root=`read_path --directory --exist` - - $echo - $echo "Please select the library type you would like to use:" - $echo - $echo "(1) archive" - $echo "(2) shared object" - $echo - - type=`read_option "archive shared" "shared"` -fi - -echo libxqilla_installed := $installed >$1 - -if [ "$installed" = "n" ]; then - - echo libxqilla_root := $root >>$1 - echo libxqilla_type := $type >>$1 - -fi -- cgit v1.1