#!/bin/sh -e # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # gnx functions make the distro system #------------------------------------------- gnxhttp_load() { gnxunwrap ${1} gnxfilelist start ${1} sed -i 's@#SSL_TREE =.*@SSL_TREE = /usr@' Makefile sed -i 's@#SSL_DEFS =@SSL_DEFS =@' Makefile sed -i 's@#SSL_INC =@SSL_INC =@' Makefile sed -i 's@#SSL_LIBS =@SSL_LIBS =@' Makefile sed -i 's@/usr/local@/usr@g' Makefile gnxmake gnxmake install gnxfilelist finish ${1} } #eof