[Bug 282737] '... | install: symlink ../man1 -> mnt/b/tftpboot//usr/share/man/en.ISO8859-1/: No such | file or directory | ...'
Date: Wed, 13 Nov 2024 22:26:41 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282737 --- Comment #1 from tzxzan+cqw8r63qtfb5g@sharklasers.com --- Similar to bug 282711 it is about relative paths and this time with the 'DESTDIR' variable. Commented lines result in the above mentioned error. Using absolute paths is OK: ... #MAKEOBJDIRPREFIX=mnt/obj/ /usr/bin/make -C mnt/src/ DESTDIR=mnt/b/tftpboot/ installworld MAKEOBJDIRPREFIX=$$(realpath mnt/obj/)/ /usr/bin/make -C mnt/src/ DESTDIR=$$(realpath ./)/mnt/b/tftpboot/ installworld #MAKEOBJDIRPREFIX=mnt/obj/ /usr/bin/make -C mnt/src/ DESTDIR=mnt/b/tftpboot/ installkernel MAKEOBJDIRPREFIX=$$(realpath mnt/obj/)/ /usr/bin/make -C mnt/src/ DESTDIR=$$(realpath ./)/mnt/b/tftpboot/ installkernel #MAKEOBJDIRPREFIX=mnt/obj/ /usr/bin/make -C mnt/src/ DESTDIR=mnt/b/tftpboot/ distribution MAKEOBJDIRPREFIX=$$(realpath mnt/obj/)/ /usr/bin/make -C mnt/src/ DESTDIR=$$(realpath ./)/mnt/b/tftpboot/ distribution ... Bug 282711 was for relative paths with 'MAKEOBJDIRPREFIX'. Bug 282737 is for relative paths with 'DESTDIR'. -- You are receiving this mail because: You are the assignee for the bug.