diff --git a/System/filebench/build b/System/filebench/build index e808006..33b8d6a 100755 --- a/System/filebench/build +++ b/System/filebench/build @@ -1,7 +1,7 @@ #!/usr/bin/env modbuild pbuild::configure() { - "${MODULE_SRCDIR}"/configure \ + "${SRC_DIR}"/configure \ --prefix="${PREFIX}" \ || exit 1 } diff --git a/System/fsstress/build b/System/fsstress/build index ef35e01..8373e14 100755 --- a/System/fsstress/build +++ b/System/fsstress/build @@ -5,13 +5,13 @@ pbuild::configure() { } pbuild::build() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" make -j ${JOBS} } pbuild::install() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" mkdir -p ${PREFIX}/bin install -m 0755 fsstress "${PREFIX}/bin" } diff --git a/System/mdtest/build b/System/mdtest/build index 9b8d4d8..afd039e 100755 --- a/System/mdtest/build +++ b/System/mdtest/build @@ -5,13 +5,13 @@ pbuild::configure() { } pbuild::build() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" make -j ${JOBS} } pbuild::install() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" mkdir -p ${PREFIX}/bin install -m 0755 mdtest "${PREFIX}/bin" } diff --git a/System/nmap/build b/System/nmap/build index 3e540a9..68f991c 100755 --- a/System/nmap/build +++ b/System/nmap/build @@ -1,7 +1,7 @@ #!/usr/bin/env modbuild pbuild::configure() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" ./configure \ --prefix="${PREFIX}" \ --with-libpcap=included \ @@ -12,12 +12,12 @@ pbuild::configure() { } pbuild::build() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" make -j "${JOBS}" } pbuild::install() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" make install } diff --git a/System/patchelf/build b/System/patchelf/build index e808006..33b8d6a 100755 --- a/System/patchelf/build +++ b/System/patchelf/build @@ -1,7 +1,7 @@ #!/usr/bin/env modbuild pbuild::configure() { - "${MODULE_SRCDIR}"/configure \ + "${SRC_DIR}"/configure \ --prefix="${PREFIX}" \ || exit 1 } diff --git a/System/unison/build b/System/unison/build index c23dfd0..03f6634 100755 --- a/System/unison/build +++ b/System/unison/build @@ -5,12 +5,12 @@ pbuild::configure() { } pbuild::build() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" make } pbuild::install() { - cd "${MODULE_SRCDIR}" + cd "${SRC_DIR}" install -m 0755 -d "${PREFIX}/bin" install -m 0755 unison "${PREFIX}/bin" }