summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
394ee61)
docclean:
$(MAKE) -C docs/ clean
docclean:
$(MAKE) -C docs/ clean
-symlinks:
- scripts/feeds.sh $(CONFIG_SOURCE_FEEDS)
-
.SILENT: clean dirclean distclean config-clean download world
FORCE: ;
.PHONY: FORCE help
.SILENT: clean dirclean distclean config-clean download world
FORCE: ;
.PHONY: FORCE help
$(PACKAGE_DIR)/Packages: $(PACKAGE_DIR)/*.ipk
(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages)
$(PACKAGE_DIR)/Packages: $(PACKAGE_DIR)/*.ipk
(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages)
+symlinks:
+ ../scripts/feeds.sh $(CONFIG_SOURCE_FEEDS)
ifeq ($(MAKECMDGOALS),compile-targets)
MAKEFLAGS:=$(MAKEFLAGS) -j$(CONFIG_JLEVEL)
ifeq ($(MAKECMDGOALS),compile-targets)
MAKEFLAGS:=$(MAKEFLAGS) -j$(CONFIG_JLEVEL)
setup_symlinks() {
# We assume that feeds do reproduce the hierarchy : section/package
# so that we can make this structure be flat in $PACKAGE_DIR
setup_symlinks() {
# We assume that feeds do reproduce the hierarchy : section/package
# so that we can make this structure be flat in $PACKAGE_DIR
done
}
checkout_feed() {
# We ensure the feed has not already been checked out, if so, we just update the source feed
if [ -d $FEEDS_DIR/$2 ]; then
done
}
checkout_feed() {
# We ensure the feed has not already been checked out, if so, we just update the source feed
if [ -d $FEEDS_DIR/$2 ]; then
- svn update $FEEDS_DIR/$2
echo "Updated to revision $(LANG=C svn info $FEEDS_DIR/$2 | awk '/^Revision:/ { print $2 }' )";
# Otherwise, we have to checkout in the $FEEDS_DIR
else
echo "Updated to revision $(LANG=C svn info $FEEDS_DIR/$2 | awk '/^Revision:/ { print $2 }' )";
# Otherwise, we have to checkout in the $FEEDS_DIR
else
extract_feed_name() {
# We extract the last name of the URL, maybe we should rename this as domain.tld.repository.name
extract_feed_name() {
# We extract the last name of the URL, maybe we should rename this as domain.tld.repository.name
- echo "$(echo $1 | awk -F/ '{ print $NF}')"
+ echo "$(echo $1 | sed -e "s/[^A-Za-z\.]\+/_/g")"
}
# We can delete symlinks every time we start this script, since modifications have been made in the $FEEDS_DIR anyway
}
# We can delete symlinks every time we start this script, since modifications have been made in the $FEEDS_DIR anyway