mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Makefile.inc1: Fix typo affecting incremental pkgbase builds.
Fixes:4231a5e504release: don't keep old packages if the BRANCH changes Sponsored by: Chelsio Communications (cherry picked from commitaee4c9c5b8)
This commit is contained in:
parent
d45717e497
commit
f8df17340c
1 changed files with 1 additions and 1 deletions
|
|
@ -2043,7 +2043,7 @@ real-update-packages: stage-packages .PHONY
|
|||
continue; \
|
||||
fi ; \
|
||||
newsum=$$(pkg query -F ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} '%X') ; \
|
||||
if [ "${BRANCH_EXT_FROM}" == "${BRANCH_EXT}" -a $${oldsum}" == "$${newsum}" ]; then \
|
||||
if [ "${BRANCH_EXT_FROM}" == "${BRANCH_EXT}" -a "$${oldsum}" == "$${newsum}" ]; then \
|
||||
echo "==> Keeping old ${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION_FROM}.${PKG_EXT}" ; \
|
||||
rm ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ; \
|
||||
cp $${pkg} ${REPODIR}/${PKG_ABI}/${PKG_VERSION} ; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue