From a47b5f19fc25900a43a009e5c2915efe26042987 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 14 Apr 2016 06:51:30 -0400 Subject: [PATCH] picolisp: Move ssl and httpGate from $PREFIX/bin They are usually called in a controlled context, and should better not clobber the global executables namespace. --- packages/picolisp/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/picolisp/build.sh b/packages/picolisp/build.sh index e7618747..0c3788eb 100644 --- a/packages/picolisp/build.sh +++ b/packages/picolisp/build.sh @@ -2,7 +2,7 @@ TERMUX_PKG_HOMEPAGE=http://picolisp.com TERMUX_PKG_DESCRIPTION="Lisp interpreter and application server framework" TERMUX_PKG_DEPENDS="libcrypt, openssl" TERMUX_PKG_VERSION=16.4.1 -TERMUX_PKG_BUILD_REVISION=1 +TERMUX_PKG_BUILD_REVISION=2 TERMUX_PKG_SRCURL=http://software-lab.de/picoLisp.tgz TERMUX_PKG_FOLDERNAME=picoLisp TERMUX_PKG_BUILD_IN_SRC=true @@ -53,8 +53,8 @@ termux_step_make_install () { ( cd $TERMUX_PREFIX/bin && ln -f -s ../lib/picolisp/bin/picolisp picolisp && ln -f -s ../lib/picolisp/bin/pil pil ) # Bundled tools: - $CC $ORIG_CFLAGS $CPPFLAGS $LDFLAGS -o $TERMUX_PREFIX/bin/ssl ../src/ssl.c -lssl -lcrypto - $CC $ORIG_CFLAGS $CPPFLAGS $LDFLAGS -o $TERMUX_PREFIX/bin/httpGate ../src/httpGate.c -lssl -lcrypto + $CC $ORIG_CFLAGS $CPPFLAGS $LDFLAGS -o $TERMUX_PREFIX/lib/picolisp/bin/ssl ../src/ssl.c -lssl -lcrypto + $CC $ORIG_CFLAGS $CPPFLAGS $LDFLAGS -o $TERMUX_PREFIX/lib/picolisp/bin/httpGate ../src/httpGate.c -lssl -lcrypto # Man pages: cp $TERMUX_PKG_SRCDIR/../man/man1/{pil,picolisp}.1 $TERMUX_PREFIX/share/man/man1/ -- 2.11.0