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