summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorpaul <paul@FreeBSD.org>1994-09-09 19:50:44 +0000
committerpaul <paul@FreeBSD.org>1994-09-09 19:50:44 +0000
commit1b075f107b783dc2820c79f0c08fb9172505bba3 (patch)
tree0ed65147c359aad0ec58ab2cd21160a6c1577fcc /gnu/usr.bin
parente935f018a7e0b08e2e3955a22c89dc3500ddb0e2 (diff)
downloadFreeBSD-src-1b075f107b783dc2820c79f0c08fb9172505bba3.zip
FreeBSD-src-1b075f107b783dc2820c79f0c08fb9172505bba3.tar.gz
Added some missing ${.CURDIR} and removed some that shouldn't have
been there. It should build and install fine with and without an obj dir now.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/send-pr/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/send-pr/Makefile b/gnu/usr.bin/send-pr/Makefile
index 76ecf50..7d12793 100644
--- a/gnu/usr.bin/send-pr/Makefile
+++ b/gnu/usr.bin/send-pr/Makefile
@@ -9,19 +9,19 @@ DATADIR=/etc
SUBMITTERS=current-users
RELEASE=`uname -rsm`
-all: send-pr.sh send-pr-el.in install-sid.sh
+all: ${.CURDIR}/send-pr.sh ${.CURDIR}/send-pr-el.in ${.CURDIR}/install-sid.sh
sed -e 's,@DATADIR@,$(DATADIR),g' \
- -e 's/@DEFAULT_RELEASE@/$(RELEASE)/g' send-pr.sh > send-pr
+ -e 's/@DEFAULT_RELEASE@/$(RELEASE)/g' ${.CURDIR}/send-pr.sh > send-pr
sed -e 's,@DATADIR@,$(DATADIR),g' \
- -e 's/@DEFAULT_RELEASE@/$(RELEASE)/g' send-pr-el.in > send-pr.el
- sed -e 's,@BINDIR@,$(BINDIR),g' install-sid.sh > install-sid
+ -e 's/@DEFAULT_RELEASE@/$(RELEASE)/g' ${.CURDIR}/send-pr-el.in > send-pr.el
+ sed -e 's,@BINDIR@,$(BINDIR),g' ${.CURDIR}/install-sid.sh > install-sid
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
- ${.CURDIR}/send-pr ${DESTDIR}/usr/bin/send-pr
+ send-pr ${DESTDIR}/usr/bin/send-pr
install -c -o ${BINOWN} -g ${BINGRP} -m 0644 \
${.CURDIR}/categories ${DESTDIR}/etc/gnats/freefall
- sh ${.CURDIR}/install-sid ${SUBMITTERS}
+ sh install-sid ${SUBMITTERS}
clean:
rm -f send-pr send-pr.el install-sid
OpenPOWER on IntegriCloud