mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix a couple DESTDIR related problems. Credit for the "Only in" section
goes to James <James_Bond_79@yahoo.com>, and Cyrille Lefevre <cyrille.lefevre@laposte.net>. The make variables problem was found by jon.
This commit is contained in:
parent
9e2518582d
commit
6ba81e778e
1 changed files with 2 additions and 2 deletions
|
|
@ -533,7 +533,7 @@ case "${RERUN}" in
|
|||
echo ' might want to verify their status before rebooting your system.'
|
||||
echo ''
|
||||
press_to_continue
|
||||
diff -qr ${DESTDIR}/etc ${TEMPROOT}/etc | grep "^Only in /etc" | ${PAGER}
|
||||
diff -qr ${DESTDIR}/etc ${TEMPROOT}/etc | grep "^Only in ${DESTDIR}/etc" | ${PAGER}
|
||||
echo ''
|
||||
press_to_continue
|
||||
;;
|
||||
|
|
@ -1019,7 +1019,7 @@ case "${PRE_WORLD}" in
|
|||
echo "*** From ${DESTDIR}/etc/make.conf"
|
||||
echo "*** From ${MAKE_CONF}"
|
||||
|
||||
for MAKE_VAR in `grep -i ^[a-z] /etc/make.conf | cut -d '=' -f 1`; do
|
||||
for MAKE_VAR in `grep -i ^[a-z] ${DESTDIR}/etc/make.conf | cut -d '=' -f 1`; do
|
||||
echo ''
|
||||
grep -w ^${MAKE_VAR} ${DESTDIR}/etc/make.conf
|
||||
grep -w ^#${MAKE_VAR} ${MAKE_CONF} ||
|
||||
|
|
|
|||
Loading…
Reference in a new issue