diff options
author | EuAndreh <eu@euandre.org> | 2024-08-24 08:50:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-24 08:50:37 -0300 |
commit | 703a5dbc9526d3192c43bdd2ad742fb9bfe09410 (patch) | |
tree | bfad10e05f6401b40f54144d69676e3c92041681 | |
parent | Move src/versions/$P/version => src/versions/$P.txt; remove "sha256" file (diff) | |
download | asami-703a5dbc9526d3192c43bdd2ad742fb9bfe09410.tar.gz asami-703a5dbc9526d3192c43bdd2ad742fb9bfe09410.tar.xz |
Makefile: Simplify building system.scm.sentinel
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -42,10 +42,9 @@ src/config/tld.txt: Makefile src/config/offsite-ssh.txt: Makefile echo '$(OFFSITE_SSH)' | ifnew $@ -system.scm.sentinel: src/guix/system.scm src/config/tld.txt src/config/offsite-ssh.txt -system.scm.sentinel: - rm -f `basename $@ .sentinel`* - guix build -v3 -r`basename $@ .sentinel` -Kf src/guix/`basename $@ .sentinel` +system.scm.sentinel: src/guix/system.scm src/config/tld.txt src/config/offsite-ssh.txt + rm -f system.scm* + guix build -v3 -r system.scm -Kf src/guix/system.scm touch $@ .SUFFIXES: .stripped |