2020-01-10 11:13:18 +08:00
|
|
|
From 96e803dc2502f1d822258048bb8dd5febe733dc7 Mon Sep 17 00:00:00 2001
|
|
|
|
|
From: openEuler Buildteam <buildteam@openeuler.org>
|
|
|
|
|
Date: Fri, 10 Jan 2020 09:25:47 +0800
|
|
|
|
|
Subject: [PATCH] allow to override names of the Qt4 tools.
|
2019-09-30 11:19:58 -04:00
|
|
|
|
|
|
|
|
---
|
2020-01-10 11:13:18 +08:00
|
|
|
wpa_supplicant/Makefile | 7 ++++---
|
|
|
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
2019-09-30 11:19:58 -04:00
|
|
|
|
|
|
|
|
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile
|
2020-01-10 11:13:18 +08:00
|
|
|
index 371789d..56c319c 100644
|
2019-09-30 11:19:58 -04:00
|
|
|
--- a/wpa_supplicant/Makefile
|
|
|
|
|
+++ b/wpa_supplicant/Makefile
|
2020-01-10 11:13:18 +08:00
|
|
|
@@ -21,7 +21,8 @@ export LIBDIR ?= /usr/local/lib/
|
|
|
|
|
export INCDIR ?= /usr/local/include/
|
2019-09-30 11:19:58 -04:00
|
|
|
export BINDIR ?= /usr/local/sbin/
|
|
|
|
|
PKG_CONFIG ?= pkg-config
|
2020-01-10 11:13:18 +08:00
|
|
|
-
|
2019-09-30 11:19:58 -04:00
|
|
|
+LRELEASE ?= lrelease
|
2020-01-10 11:13:18 +08:00
|
|
|
+QMAKE ?= qmake
|
2019-09-30 11:19:58 -04:00
|
|
|
CFLAGS += $(EXTRA_CFLAGS)
|
|
|
|
|
CFLAGS += -I$(abspath ../src)
|
|
|
|
|
CFLAGS += -I$(abspath ../src/utils)
|
2020-01-10 11:13:18 +08:00
|
|
|
@@ -1811,10 +1812,10 @@ wpa_gui:
|
2019-09-30 11:19:58 -04:00
|
|
|
@echo "wpa_gui has been removed - see wpa_gui-qt4 for replacement"
|
|
|
|
|
|
|
|
|
|
wpa_gui-qt4/Makefile:
|
|
|
|
|
- qmake -o wpa_gui-qt4/Makefile wpa_gui-qt4/wpa_gui.pro
|
|
|
|
|
+ $(QMAKE) -o wpa_gui-qt4/Makefile wpa_gui-qt4/wpa_gui.pro
|
|
|
|
|
|
|
|
|
|
wpa_gui-qt4/lang/wpa_gui_de.qm: wpa_gui-qt4/lang/wpa_gui_de.ts
|
|
|
|
|
- lrelease wpa_gui-qt4/wpa_gui.pro
|
|
|
|
|
+ $(LRELEASE) wpa_gui-qt4/wpa_gui.pro
|
|
|
|
|
|
|
|
|
|
wpa_gui-qt4: wpa_gui-qt4/Makefile wpa_gui-qt4/lang/wpa_gui_de.qm
|
|
|
|
|
$(MAKE) -C wpa_gui-qt4
|
|
|
|
|
--
|
2020-01-10 11:13:18 +08:00
|
|
|
1.8.3.1
|
2019-09-30 11:19:58 -04:00
|
|
|
|