| Summary: | make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Max <br-max> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | normal | CC: | buildroot |
| Priority: | P5 | ||
| Version: | 2019.08.1 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Host: | Target: | ||
| Build: | |||
|
Description
Max
2019-10-23 16:50:48 UTC
For BR2_DL_DIR, this is clearly an intended behavior. However, for BR2_HOST_DIR, it does remove it properly. See: $ grep ^BR2_HOST_DIR .config BR2_HOST_DIR="/tmp/foobar-host" $ ls /tmp/foobar-host/ arm-buildroot-linux-uclibcgnueabi bin etc include lib lib64 opt share usr $ make clean rm -rf /home/thomas/projets/buildroot/output/target /home/thomas/projets/buildroot/output/images /tmp/foobar-host /home/thomas/projets/buildroot/output/host \ /home/thomas/projets/buildroot/output/build /home/thomas/projets/buildroot/output/staging \ /home/thomas/projets/buildroot/output/legal-info /home/thomas/projets/buildroot/output/graphs $ ls /tmp/foobar-host/ ls: cannot access '/tmp/foobar-host/': No such file or directory I used "make clean", but "make distclean" implies "make clean". So I think it all works as intended. |