Commit ec5b83ce authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- add missing package-source targets

- add missing dependencies to build prerequisites in the config system
parent 87eddc3d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@ AT_TARGET_BINARY:=usr/bin/at
$(DL_DIR)/$(AT_SOURCE):
	 $(WGET) -P $(DL_DIR) $(AT_SITE)/$(AT_SOURCE)

at-source: $(DL_DIR)/$(AT_SOURCE)

$(AT_DIR)/.unpacked: $(DL_DIR)/$(AT_SOURCE)
	$(AT_CAT) $(DL_DIR)/$(AT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	toolchain/patch-kernel.sh $(AT_DIR) package/at/ at\*.patch
@@ -58,7 +60,6 @@ at-clean:

at-dirclean:
	rm -rf $(AT_DIR)

#############################################################
#
# Toplevel Makefile options
+1 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_BASH
	bool "bash"
	default n
	select BR2_PACKAGE_NCURSES
	help
	  The standard GNU Bourne again shell.

+1 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_CVS
	bool "cvs"
	default n
	select BR2_PACKAGE_NCURSES
	help
	  Concurrent Versions System - source code revision control tools.

+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@ CVS_TARGET_BINARY:=usr/bin/cvs
$(DL_DIR)/$(CVS_SOURCE):
	$(WGET) -P $(DL_DIR) $(CVS_SITE)/$(CVS_SOURCE)

cvs-source: $(DL_DIR)/$(CVS_SOURCE)

$(CVS_DIR)/.unpacked: $(DL_DIR)/$(CVS_SOURCE)
	$(CVS_CAT) $(DL_DIR)/$(CVS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(CVS_DIR)/.unpacked
+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@ DISTCC_TARGET_BINARY:=usr/bin/distcc
$(DL_DIR)/$(DISTCC_SOURCE):
	$(WGET) -P $(DL_DIR) $(DISTCC_SITE)/$(DISTCC_SOURCE)

distcc-source: $(DL_DIR)/$(CVS_SOURCE)

$(DISTCC_DIR)/.unpacked: $(DL_DIR)/$(DISTCC_SOURCE)
	$(DISTCC_CAT) $(DL_DIR)/$(DISTCC_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(DISTCC_DIR)/.unpacked
Loading