diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-10-26 16:44:21 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-10-26 16:44:21 +0000 |
commit | 3497bc6201e86a778a315b8291fc5df30b6154cf (patch) | |
tree | 65869be41e48a786f73e82eb9ffa554d70d3480b | |
parent | Use scripts/version to get the lmbench version instead of using (diff) |
- Remove hardcoded LOCALBASE.
Reported by: kris
Notes
Notes:
svn path=/head/; revision=146426
-rw-r--r-- | graphics/icoconvert/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/icoconvert/Makefile b/graphics/icoconvert/Makefile index ef44426b4ff3..60eacd94309f 100644 --- a/graphics/icoconvert/Makefile +++ b/graphics/icoconvert/Makefile @@ -21,8 +21,8 @@ USE_REINPLACE= yes PLIST_FILES= bin/icoconvert post-patch: - ${REINPLACE_CMD} -e 's|^icoconvert|all|' ${WRKSRC}/Makefile - ${REINPLACE_CMD} -e 's|^\(FLAGS=\)|\1-I${PREFIX}/include |' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^icoconvert|all|' -e 's|^\(FLAGS=\)|\1-I${LOCALBASE}/include |' \ + -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/icoconvert ${PREFIX}/bin |