mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
49af152797
PR: ports/179309 Reviewed by: crees (mentor)
30 lines
623 B
Plaintext
30 lines
623 B
Plaintext
$FreeBSD$
|
|
|
|
Disable debug; runs into cryptic errors on 9+/amd64
|
|
|
|
--- plugins/plugins.pri.orig 2013-06-04 10:06:48.955586932 -0500
|
|
+++ plugins/plugins.pri 2013-06-04 10:07:37.450613576 -0500
|
|
@@ -1,7 +1,7 @@
|
|
include(../compiler.pri)
|
|
|
|
TEMPLATE = lib
|
|
-CONFIG += plugin debug_and_release warn_on
|
|
+CONFIG += plugin warn_on
|
|
CONFIG -= qt
|
|
DIST *= mumble_plugin.h
|
|
|
|
@@ -10,12 +10,7 @@
|
|
CONFIG += qt_dynamic_lookup
|
|
}
|
|
|
|
-CONFIG(debug, debug|release) {
|
|
- CONFIG += console
|
|
- DESTDIR = ../../debug/plugins
|
|
-}
|
|
-
|
|
-CONFIG(release, debug|release) {
|
|
+CONFIG(release, release) {
|
|
DESTDIR = ../../release/plugins
|
|
}
|
|
|