blob: 2573bf0d7647391be389849a21dca3ac04e6645d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# set +o errexit -o noglob -o nounset is assumed.
#
pkg_mandoc_configure_patch_pre() {
rtl_fileop cp \
"${MIDIPIX_BUILD_PWD}/files/mandoc/configure.ac" \
"${PKG_BASE_DIR}/mandoc-${PKG_VERSION}/";
rtl_fileop cp \
"${MIDIPIX_BUILD_PWD}/files/mandoc/Makefile.am" \
"${PKG_BASE_DIR}/mandoc-${PKG_VERSION}/";
rtl_fileop cp \
"${MIDIPIX_BUILD_PWD}/files/mandoc/extern_config.h" \
"${PKG_BASE_DIR}/mandoc-${PKG_VERSION}/";
};
# vim:filetype=sh textwidth=0
|