diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-04-09 00:12:49 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-04-09 00:12:49 -0500 |
commit | 11f28876ceb634d29439462195cfa831dd2bed43 (patch) | |
tree | b50f57b55138dfb071c41d678cbd6fecb9075748 /Makefile | |
parent | init.d: rearrange Makefile (diff) | |
download | netifrc-11f28876ceb634d29439462195cfa831dd2bed43.tar.gz netifrc-11f28876ceb634d29439462195cfa831dd2bed43.tar.bz2 netifrc-11f28876ceb634d29439462195cfa831dd2bed43.zip |
Makefile: fix parallel build issue
In the main Makefile, the installafter target should have a dependency
on realinstall to make sure it is processed in the correct order.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,5 +15,5 @@ include ${MK}/subdir.mk include ${MK}/dist.mk include ${MK}/git.mk -_installafter: +_installafter: realinstall ${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version |