diff options
author | RaindropsSys <contact@minteck.org> | 2023-06-22 23:06:12 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-06-22 23:06:12 +0200 |
commit | 23563c7188e089929b60f9e10721c6fc43a220ff (patch) | |
tree | edfe2b009c82900d4ac27db02222d2f68dcad846 /includes/external/school/node_modules/node-forge/build-setup | |
parent | 7a7a49332df7c852abbaa33c7e8e87f93d064d61 (diff) | |
download | pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.gz pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.bz2 pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.zip |
Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated)
Diffstat (limited to 'includes/external/school/node_modules/node-forge/build-setup')
-rwxr-xr-x | includes/external/school/node_modules/node-forge/build-setup | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/includes/external/school/node_modules/node-forge/build-setup b/includes/external/school/node_modules/node-forge/build-setup deleted file mode 100755 index 5c3866e..0000000 --- a/includes/external/school/node_modules/node-forge/build-setup +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# This shell script sets up the software to be built using 'make'. In -# order to perform a build from a fresh source tree, do the following: -# -# 1. ./build-setup -# 2. make -# -# If you don't want ./configure to be run automatically, you can do -# the following: ./build-setup -s - -# Process command line options -SKIP_CONFIGURE=0 -for arg in "$*" -do - case $arg in - "-s" | "--setup-only" ) SKIP_CONFIGURE=1 ;; - esac -done - -# Check and add potential aclocal dirs -MAYBE_AC_DIRS=" - /usr/local/share/aclocal - /opt/local/share/aclocal - /sw/share/aclocal - " -ACDIRS="-I m4" -for dir in $MAYBE_AC_DIRS; do - if test -d $dir; then - ACDIRS="$ACDIRS -I $dir" - fi -done - -# Run aclocal on the set of local ac scripts -cd setup -aclocal $ACDIRS -# Generate the configure script -autoconf && mv configure .. -cd .. - -# Run the configure script if "-s" isn't a command line option -if [ $SKIP_CONFIGURE -eq 0 ]; then - # Run the configure script in default development mode - ./configure $* -fi - |