mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
add option to select target installation per case 0000519
This commit is contained in:
parent
54f724280d
commit
9f9e02025e
@ -7,3 +7,12 @@ config BR2_PACKAGE_GETTEXT
|
|||||||
messages.
|
messages.
|
||||||
|
|
||||||
http://www.gnu.org/software/gettext/
|
http://www.gnu.org/software/gettext/
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBINTL
|
||||||
|
bool "libintl"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Selecting this package installs all of gettext in the staging
|
||||||
|
directory and the shared library for it's use in the target.
|
||||||
|
|
||||||
|
http://www.gnu.org/software/gettext/
|
||||||
|
@ -43,14 +43,10 @@ $(GETTEXT_DIR)/.configured: $(GETTEXT_DIR)/.unpacked
|
|||||||
$(GETTEXT_DIR)/$(GETTEXT_BINARY): $(GETTEXT_DIR)/.configured
|
$(GETTEXT_DIR)/$(GETTEXT_BINARY): $(GETTEXT_DIR)/.configured
|
||||||
$(MAKE) CC=$(TARGET_CC) -C $(GETTEXT_DIR)
|
$(MAKE) CC=$(TARGET_CC) -C $(GETTEXT_DIR)
|
||||||
|
|
||||||
$(TARGET_DIR)/$(GETTEXT_TARGET_BINARY): $(GETTEXT_DIR)/$(GETTEXT_BINARY)
|
$(STAGING_DIR)/$(GETTEXT_TARGET_BINARY): $(GETTEXT_DIR)/$(GETTEXT_BINARY)
|
||||||
$(MAKE) DESTDIR=$(STAGING_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) install
|
$(MAKE) DESTDIR=$(STAGING_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) install
|
||||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) install
|
|
||||||
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
||||||
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc \
|
|
||||||
$(TARGET_DIR)/usr/doc
|
|
||||||
|
|
||||||
gettext: uclibc $(TARGET_DIR)/$(GETTEXT_TARGET_BINARY)
|
gettext: uclibc $(STAGING_DIR)/$(GETTEXT_TARGET_BINARY)
|
||||||
|
|
||||||
gettext-clean:
|
gettext-clean:
|
||||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) uninstall
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) uninstall
|
||||||
@ -59,11 +55,35 @@ gettext-clean:
|
|||||||
gettext-dirclean:
|
gettext-dirclean:
|
||||||
rm -rf $(GETTEXT_DIR)
|
rm -rf $(GETTEXT_DIR)
|
||||||
|
|
||||||
|
#############################################################
|
||||||
|
#
|
||||||
|
# gettext on the target
|
||||||
|
#
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
gettext-target: $(GETTEXT_DIR)/$(GETTEXT_BINARY)
|
||||||
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(GETTEXT_DIR) install
|
||||||
|
chmod +x $(TARGET_DIR)/usr/lib/libintl.so.2.2.0 # identify as needing to be stipped
|
||||||
|
rm -rf $(TARGET_DIR)/usr/info \
|
||||||
|
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc \
|
||||||
|
$(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/aclocal \
|
||||||
|
$(TARGET_DIR)/usr/include/libintl.h
|
||||||
|
-rmdir $(TARGET_DIR)/usr/include
|
||||||
|
|
||||||
|
libintl: $(TARGET_DIR)/usr/lib/libintl.so
|
||||||
|
|
||||||
|
$(TARGET_DIR)/usr/lib/libintl.so: $(STAGING_DIR)/$(GETTEXT_TARGET_BINARY)
|
||||||
|
cp -a $(STAGING_DIR)/usr/lib/libintl.so* $(TARGET_DIR)/usr/lib
|
||||||
|
touch $@
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
# Toplevel Makefile options
|
# Toplevel Makefile options
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
ifeq ($(strip $(BR2_PACKAGE_GETTEXT)),y)
|
ifeq ($(strip $(BR2_PACKAGE_LIBINTL)),y)
|
||||||
TARGETS+=gettext
|
TARGETS+=libintl
|
||||||
|
endif
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_GETTEXT)),y)
|
||||||
|
TARGETS+=gettext-target
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user