diff options
author | jkh <jkh@FreeBSD.org> | 2000-02-15 07:15:41 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-02-15 07:15:41 +0000 |
commit | 364d43782d3687a840aebe5ede72c7b0cf17534e (patch) | |
tree | cdc3701ba5143b408856d2dceae55fa6dee0de2f /games/wargames | |
parent | 789e20995da6f8e487fceb3b49b09edfc9fa5e52 (diff) | |
download | FreeBSD-src-364d43782d3687a840aebe5ede72c7b0cf17534e.zip FreeBSD-src-364d43782d3687a840aebe5ede72c7b0cf17534e.tar.gz |
The people frobbing this file seem constitutionally unable to do so
without breaking it. Use ${.CURDIR} properly so that beforeinstall
target will actually work in the presence of an obj dir.
Diffstat (limited to 'games/wargames')
-rw-r--r-- | games/wargames/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/wargames/Makefile b/games/wargames/Makefile index b5841eb..1b9ae0b 100644 --- a/games/wargames/Makefile +++ b/games/wargames/Makefile @@ -4,7 +4,7 @@ MAN6= wargames.6 beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} wargames.sh \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${.CURDIR}/wargames.sh \ ${DESTDIR}${BINDIR}/wargames .include <bsd.prog.mk> |