X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=stage3%2Fpkg%2Fdosfstools;h=5db98dc3230e01ab7372efbfdd5e3b30dd52c4ba;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=72498ae1485b92fcb893b0dd5a99d3c6ca6b9684;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/dosfstools b/stage3/pkg/dosfstools index 72498ae..5db98dc 100644 --- a/stage3/pkg/dosfstools +++ b/stage3/pkg/dosfstools @@ -1,22 +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} - -# Applying patches (if any) -apply_patches ${PACKAGE} - -cd ${LFS_TMP}/${PACKAGE} -make -make PREFIX=/usr SBINDIR=/sbin install -ldconfig - -exit $? +hvbuild() +{ + make + make PREFIX=/usr SBINDIR=/sbin install +}