X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fxmltoman;h=be7ba06fe7e4b9e29e9cddbce696ca54a15c192d;hb=23534737a153c4084e3dd44a3e6cdcf2537aee01;hp=2127de5f6752f2b8f100dc9a77e32ebb201dc52c;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/xmltoman b/stage3/pkg/xmltoman index 2127de5..be7ba06 100644 --- a/stage3/pkg/xmltoman +++ b/stage3/pkg/xmltoman @@ -1,28 +1,8 @@ -#!/bin/sh -set -o errexit - -# 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 $? +#!/bin/bash + +hvbuild() +{ + cd ${LFS_TMP}/${PACKAGE} + make PREFIX=/usr + make install PREFIX=/usr +}