mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
build: Add bootstrap' and
sync-with-upstream' scripts.
* bootstrap, nix/sync-with-upstream: New files. * Makefile.am (EXTRA_DIST): Add `bootstrap'. * daemon.am (EXTRA_DIST): Add `nix/sync-with-upstream'.
This commit is contained in:
parent
e05385192c
commit
b49ffe2d67
4 changed files with 82 additions and 0 deletions
16
bootstrap
Executable file
16
bootstrap
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Import missing source files and create the build system.
|
||||
|
||||
set -e -x
|
||||
|
||||
top_srcdir="$PWD"
|
||||
export top_srcdir
|
||||
|
||||
if [ ! -d nix-upstream ]
|
||||
then
|
||||
git submodule init
|
||||
fi
|
||||
git submodule update
|
||||
|
||||
exec autoreconf -vfi
|
Loading…
Add table
Add a link
Reference in a new issue