commit 957f3c72fb1d7839c038dd8126a59e390661ae15 from: Stefan Sperling date: Sat May 25 20:21:52 2024 UTC fix make search path in bgpnsh and nshdoas directories This Makefile grammar fix makes our build system independent of 'make obj', which is now an entirely optional step. commit - 73decf344937417c8419f0ef30936f105b3b2ed0 commit + 957f3c72fb1d7839c038dd8126a59e390661ae15 blob - ed37b68bf47f5449b6419a846081c105ff84f270 blob + 6e7273179f846fde7523da1e0fa009764616a0b2 --- bgpnsh/Makefile +++ bgpnsh/Makefile @@ -1,7 +1,7 @@ # PROG= bgpnsh -.PATH=${.CURDIR}/..:${.CURDIR} +.PATH:${.CURDIR}/.. .include "../nsh-version.mk" blob - 7d8f35d36b71fcb33d173f87b45ef68d7d2423b3 blob + 7ec35dab7c90c3d22ee57353679b372615f987e8 --- nshdoas/Makefile +++ nshdoas/Makefile @@ -1,7 +1,7 @@ # PROG= nshdoas -.PATH=${.CURDIR}/.. +.PATH:${.CURDIR}/.. .include "../nsh-version.mk"