diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-04-20 11:39:40 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-04-20 11:39:40 +0000 |
commit | 15de8793d4b5a644b272546703e70998d05438f7 (patch) | |
tree | 83c636bbd87cded17c6c0c445dea9496a179fdcd /emulators/virtualbox-ose-kmod-legacy | |
parent | 1b0763b41ea691bd7f93494d95125f6c5e1e0846 (diff) |
Fix building with LOCALBASE != PREFIX
Notes
Notes:
svn path=/head/; revision=272950
Diffstat (limited to 'emulators/virtualbox-ose-kmod-legacy')
-rw-r--r-- | emulators/virtualbox-ose-kmod-legacy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/virtualbox-ose-kmod-legacy/Makefile b/emulators/virtualbox-ose-kmod-legacy/Makefile index 3ac683ce416b..ce68f65d0f59 100644 --- a/emulators/virtualbox-ose-kmod-legacy/Makefile +++ b/emulators/virtualbox-ose-kmod-legacy/Makefile @@ -80,7 +80,7 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/Config.kmk \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|\$$KBUILDDIR_BIN/kmk_sed|${PREFIX}/bin/kmk_sed|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|\$$KBUILDDIR_BIN/kmk_sed|${LOCALBASE}/bin/kmk_sed|g' ${WRKSRC}/configure pre-build: @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' \ |