Upgrade to vte-0.38.2
[hvlinux.git] / stage3 / pkg / xmltoman
index 2127de5..94103e1 100644 (file)
@@ -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
+}