X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fxmltoman;h=94103e11150e83477ed2b7bcc413d51326b42ff3;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=2127de5f6752f2b8f100dc9a77e32ebb201dc52c;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/xmltoman b/stage3/pkg/xmltoman index 2127de5..94103e1 100644 --- a/stage3/pkg/xmltoman +++ b/stage3/pkg/xmltoman @@ -1,28 +1,7 @@ -#!/bin/sh -set -o errexit +#!/bin/bash -# First argument of this script is the package name. -# Remaining arguments are additional configure options. - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -PACKAGE=${1} -shift -CONFIGURE_OPTS=${*} - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -# Applying patches (if any) -apply_patches ${PACKAGE} - -cd ${LFS_TMP}/${PACKAGE} -make PREFIX=/usr -make install PREFIX=/usr - -exit $? +hvbuild() +{ + make PREFIX=/usr + make PREFIX=/usr install +}