mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
29 lines
933 B
Plaintext
29 lines
933 B
Plaintext
From 0b4cb54af4d9727715c7054d92b790c25afc6707 Mon Sep 17 00:00:00 2001
|
|
From: Schrijvers Luc <begasus@gmail.com>
|
|
Date: Mon, 25 Nov 2024 09:38:57 +0100
|
|
Subject: Makefile fixes for Haiku
|
|
|
|
|
|
diff --git a/iaito-translations-e66b3a962a7fc7dfd730764180011ecffbb206bf/Makefile b/iaito-translations-e66b3a962a7fc7dfd730764180011ecffbb206bf/Makefile
|
|
index d6e0d20..dd34f4b 100644
|
|
--- a/iaito-translations-e66b3a962a7fc7dfd730764180011ecffbb206bf/Makefile
|
|
+++ b/iaito-translations-e66b3a962a7fc7dfd730764180011ecffbb206bf/Makefile
|
|
@@ -18,11 +18,11 @@ clean:
|
|
rm -f */*.qm
|
|
|
|
install: build
|
|
- install -d $(PREFIX)/share/iaito/translations
|
|
- install -m 644 */*.qm $(PREFIX)/share/iaito/translations/
|
|
+ install -d $(PREFIX)/data/Qt6/translations
|
|
+ install -m 644 */*.qm $(PREFIX)/data/Qt6/translations/
|
|
|
|
build:
|
|
- lrelease $(SOURCES)
|
|
+ /boot/system/lib/Qt6/lrelease $(SOURCES)
|
|
|
|
user-install:
|
|
$(MAKE) install PREFIX=${HOME}/.local
|
|
--
|
|
2.52.0
|
|
|