diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2010-02-23 20:24:44 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2010-02-23 20:24:44 +0000 |
commit | eea1d2d9a52236e5babdab3b8c88f23f615b5e06 (patch) | |
tree | 198678e484c92663c3505072ad853e4308d08659 /editors | |
parent | 202ed6e48f8a3c080a6720d9b604e59055083b7e (diff) |
- Mark MAKE_JOBS_UNSAFE, fails with forced make jobs
- Respect CC/CFLAGS by passing QMAKEFLAGS to qmake
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=250237
Diffstat (limited to 'editors')
-rw-r--r-- | editors/lfhex/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/lfhex/Makefile b/editors/lfhex/Makefile index ab9c267199ec..1a18d4c336c6 100644 --- a/editors/lfhex/Makefile +++ b/editors/lfhex/Makefile @@ -19,6 +19,7 @@ COMMENT= Large file hex editor USE_QT_VER= 4 QT_COMPONENTS= corelib gui moc_build qmake_build rcc_build USE_BISON= build +MAKE_JOBS_UNSAFE=yes PORTDOCS= README PLIST_FILES= bin/lfhex @@ -32,7 +33,8 @@ post-patch: .endif pre-build: - @cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${QMAKE} -unix lfhex.pro + @cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \ + ${QMAKE} ${QMAKEFLAGS} -unix lfhex.pro do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lfhex ${PREFIX}/bin |