Remove obsolete patch
[hvlinux.git] / stage3 / pkg / dosfstools
index 72498ae..5db98dc 100644 (file)
@@ -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
+}