diff options
author | EuAndreh <eu@euandre.org> | 2023-03-22 19:31:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-22 22:39:49 -0300 |
commit | 08997d82b808fcc14f43679f6dcd069a590d642b (patch) | |
tree | 7b7851e8141449c60c5b51eb54c0b0fde4652816 /src | |
parent | src/bin/paku: Explain how to have a file as overlay for Nix (diff) | |
download | package-repository-08997d82b808fcc14f43679f6dcd069a590d642b.tar.gz package-repository-08997d82b808fcc14f43679f6dcd069a590d642b.tar.xz |
git mv src/bin/paku src/bin/paku.in
Use the derived version without the ".in" suffix as the executable one,
and remove the explicit "perl src/bin/paku" invocation with a simple
"paku" one.
Diffstat (limited to '')
-rwxr-xr-x | src/bin/paku.in (renamed from src/bin/paku) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/paku b/src/bin/paku.in index fcaf1ea..9305ec9 100755 --- a/src/bin/paku +++ b/src/bin/paku.in @@ -438,10 +438,10 @@ sub emit_debian() { \$(DIR)/debian/Packages: \$(debs) - cd \$(\@D) && perl \$\$OLDPWD/src/bin/paku debian-packages *.deb > \$(\@F) + cd \$(\@D) && paku debian-packages *.deb > \$(\@F) \$(DIR)/debian/Release: \$(DIR)/debian/Packages - perl src/bin/paku debian-release \$(DIR)/debian/Packages > \$\@ + paku debian-release \$(DIR)/debian/Packages > \$\@ \$(DIR)/debian/Release.gpg: \$(DIR)/debian/Release gpg -abs -o \$\@ \$(DIR)/debian/Release |