Make some of the changes needed to the 'makeicecat' script, to allow it to run in a snippet without network access. After this patch is applied, some additional changes will be made using 'substitute*'. diff --git a/makeicecat b/makeicecat index bf2b7a6..bc3b19b 100755 --- a/makeicecat +++ b/makeicecat @@ -58,7 +58,7 @@ readonly SOURCEDIR=icecat-${FFVERSION} # debug/shell options readonly DEVEL=0 set -euo pipefail -(( DEVEL )) && set -x +set -x ############################################################################### @@ -459,7 +459,7 @@ configure_search() sed 's|ddg@|ddg-html@|' -i browser/components/search/extensions/ddg-html/manifest.json # Process various JSON pre-configuration dumps. - python3 ../../tools/process-json-files.py . browser/components/extensions/schemas/ + python3 "${DATADIR}"/../tools/process-json-files.py . browser/components/extensions/schemas/ } configure_mobile() @@ -855,12 +855,12 @@ finalize_sourceball() # entry point ############################################################################### -validate_env || exit 1 -prepare_env -fetch_source -verify_sources -extract_sources -fetch_l10n +# validate_env || exit 1 +# prepare_env +# fetch_source +# verify_sources +# extract_sources +# fetch_l10n apply_patches configure configure_search @@ -872,4 +872,4 @@ prepare_macos_packaging configure_extensions configure_onboarding apply_bugfixes -finalize_sourceball +# finalize_sourceball ot?id=53f510dad6cc1b55b4abdbbfd55e507a9463a80f'>commitdiff
path: root/doc/images/shepherd-graph.dot
AgeCommit message (Collapse)Author
2016-12-17doc: Update dot graphs.Ludovic Courtès
* doc/images/bootstrap-packages.dot, doc/images/coreutils-bag-graph.dot, doc/images/coreutils-graph.dot, doc/images/shepherd-graph.dot: Regenerate.
2016-01-29guix system: Rename 'dmd-graph' to 'shepherd-graph'.Alex Kost
* doc/images/dmd-graph.dot: Rename to... * doc/images/shepherd-graph.dot: ... this. * doc.am (DOT_FILES): Adjust accordingly. * guix/scripts/system.scm (dmd-service-node-label) (dmd-service-node-type, export-dmd-graph): Rename to... (shepherd-service-node-label, shepherd-service-node-type) (export-shepherd-graph): ... this. (show-help, process-action, process-command): Rename 'dmd-graph' to 'shepherd-graph'. * emacs/guix-command.el (guix-command-additional-execute-arguments) (guix-command-special-executors): Likewise. * doc/guix.texi: Likewise. * doc/emacs.texi (Emacs Popup Interface): Likewise.