mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-06 09:57:44 +00:00
directfb: fix tabs instead of spaces
Commit 0eca108b738acf9d3 (directfb: add host-directfb target for directfb-csource) had tabs replaced by spaces, causing stuff to break - Fixed. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
0eca108b73
commit
f9775c9148
@ -158,47 +158,47 @@ DIRECTFB_HOST_DIR:=$(BUILD_DIR)/directfb-$(DIRECTFB_VERSION)-host
|
|||||||
DIRECTFB_HOST_BINARY:=$(HOST_DIR)/usr/bin/directfb-csource
|
DIRECTFB_HOST_BINARY:=$(HOST_DIR)/usr/bin/directfb-csource
|
||||||
|
|
||||||
$(DL_DIR)/$(DIRECTFB_SOURCE):
|
$(DL_DIR)/$(DIRECTFB_SOURCE):
|
||||||
$(call DOWNLOAD,$(DIRECTFB_SITE),$(DIRECTFB_SOURCE))
|
$(call DOWNLOAD,$(DIRECTFB_SITE),$(DIRECTFB_SOURCE))
|
||||||
|
|
||||||
$(STAMP_DIR)/host_directfb_unpacked: $(DL_DIR)/$(DIRECTFB_SOURCE)
|
$(STAMP_DIR)/host_directfb_unpacked: $(DL_DIR)/$(DIRECTFB_SOURCE)
|
||||||
mkdir -p $(DIRECTFB_HOST_DIR)
|
mkdir -p $(DIRECTFB_HOST_DIR)
|
||||||
$(INFLATE$(suffix $(DIRECTFB_SOURCE))) $< | \
|
$(INFLATE$(suffix $(DIRECTFB_SOURCE))) $< | \
|
||||||
$(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(DIRECTFB_HOST_DIR) $(TAR_OPTIONS) -
|
$(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(DIRECTFB_HOST_DIR) $(TAR_OPTIONS) -
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(STAMP_DIR)/host_directfb_configured: $(STAMP_DIR)/host_directfb_unpacked $(STAMP_DIR)/host_pkgconfig_installed
|
$(STAMP_DIR)/host_directfb_configured: $(STAMP_DIR)/host_directfb_unpacked $(STAMP_DIR)/host_pkgconfig_installed
|
||||||
(cd $(DIRECTFB_HOST_DIR); rm -rf config.cache; \
|
(cd $(DIRECTFB_HOST_DIR); rm -rf config.cache; \
|
||||||
$(HOST_CONFIGURE_OPTS) \
|
$(HOST_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(HOST_CFLAGS)" \
|
CFLAGS="$(HOST_CFLAGS)" \
|
||||||
LDFLAGS="$(HOST_LDFLAGS)" \
|
LDFLAGS="$(HOST_LDFLAGS)" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="$(HOST_DIR)/usr" \
|
--prefix="$(HOST_DIR)/usr" \
|
||||||
--sysconfdir="$(HOST_DIR)/etc" \
|
--sysconfdir="$(HOST_DIR)/etc" \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-debug \
|
--disable-debug \
|
||||||
--disable-multi \
|
--disable-multi \
|
||||||
--with-gfxdrivers=none \
|
--with-gfxdrivers=none \
|
||||||
--with-inputdrivers=none \
|
--with-inputdrivers=none \
|
||||||
)
|
)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(STAMP_DIR)/host_directfb_compiled: $(STAMP_DIR)/host_directfb_configured
|
$(STAMP_DIR)/host_directfb_compiled: $(STAMP_DIR)/host_directfb_configured
|
||||||
$(MAKE) -C $(DIRECTFB_HOST_DIR)/tools directfb-csource
|
$(MAKE) -C $(DIRECTFB_HOST_DIR)/tools directfb-csource
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(STAMP_DIR)/host_directfb_installed: $(STAMP_DIR)/host_directfb_compiled
|
$(STAMP_DIR)/host_directfb_installed: $(STAMP_DIR)/host_directfb_compiled
|
||||||
$(INSTALL) -m 0755 $(DIRECTFB_HOST_DIR)/tools/directfb-csource $(HOST_DIR)/usr/bin
|
$(INSTALL) -m 0755 $(DIRECTFB_HOST_DIR)/tools/directfb-csource $(HOST_DIR)/usr/bin
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
host-directfb: $(STAMP_DIR)/host_directfb_installed
|
host-directfb: $(STAMP_DIR)/host_directfb_installed
|
||||||
|
|
||||||
host-directfb-source: directfb-source
|
host-directfb-source: directfb-source
|
||||||
|
|
||||||
host-directfb-clean:
|
host-directfb-clean:
|
||||||
rm -f $(addprefix $(STAMP_DIR)/host_directfb_,unpacked configured compiled installed)
|
rm -f $(addprefix $(STAMP_DIR)/host_directfb_,unpacked configured compiled installed)
|
||||||
rm -f $(HOST_DIR)/usr/bin/directfb-csource
|
rm -f $(HOST_DIR)/usr/bin/directfb-csource
|
||||||
-$(MAKE) -C $(DIRECTFB_HOST_DIR)/tools clean
|
-$(MAKE) -C $(DIRECTFB_HOST_DIR)/tools clean
|
||||||
|
|
||||||
host-directfb-dirclean:
|
host-directfb-dirclean:
|
||||||
rm -rf $(DIRECTFB_HOST_DIR)
|
rm -rf $(DIRECTFB_HOST_DIR)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user