diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | src/ob-gencontrol.sh | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -10,6 +10,10 @@ Utilities: because BusyBox's gzip doesn't preserve modification times. * ob-buildenv now adds "-ffile-prefix-map" options to CFLAGS and CXXFLAGS. + * ob-gencontrol now reduces and normalizes binary package dependencies + after substituting variables. Otherwise, substitution variables may + contain dependency restrictions or newline characters that are + passed through to the binary package's control file. opkbuild version 4.2.1 ---------------------- diff --git a/src/ob-gencontrol.sh b/src/ob-gencontrol.sh index 1c0da12..5a103a0 100644 --- a/src/ob-gencontrol.sh +++ b/src/ob-gencontrol.sh @@ -164,18 +164,18 @@ gen_control_bin() 'Essential') ;; 'Depends' | 'Recommends' | 'Suggests' | 'Pre-Depends') + value="$(ob_substvars "${value}" "${binary}")" value="$(ob_reduce_deps \ -a "${OPK_HOST_ARCH}" \ -p "${OPK_HOST_PLAT}" \ -- "${value}")" - value="$(ob_substvars "${value}" "${binary}")" ;; 'Conflicts' | 'Provides' | 'Replaces') + value="$(ob_substvars "${value}" "${binary}")" value="$(ob_reduce_deps \ -a "${OPK_HOST_ARCH}" \ -p "${OPK_HOST_PLAT}" \ -u -- "${value}")" - value="$(ob_substvars "${value}" "${binary}")" ;; esac printf '%s: %s\n' "${name}" "${value}" | sed 's/[, ]*$//' >&3 |