mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
![aleksana](/assets/img/avatar_default.png)
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
18 lines
547 B
Diff
18 lines
547 B
Diff
diff --git a/Makefile.m4 b/Makefile.m4
|
|
index a6a100b..bf7c041 100644
|
|
--- a/Makefile.m4
|
|
+++ b/Makefile.m4
|
|
@@ -30,8 +32,10 @@ LINK.o =$(LINK.cc)
|
|
# to install set-root-uid, `make BIN_MODE=04755 install'...
|
|
BIN_MODE?=0755
|
|
install: dvd+rw-tools
|
|
- install -o root -m $(BIN_MODE) $(CHAIN) /usr/bin
|
|
- install -o root -m 0644 growisofs.1 /usr/share/man/man1
|
|
+ install -d $(prefix)/bin
|
|
+ install -d $(prefix)/share/man/man1
|
|
+ install -m $(BIN_MODE) $(CHAIN) $(prefix)/bin
|
|
+ install -m 0644 growisofs.1 $(prefix)/share/man/man1
|
|
])
|
|
|
|
ifelse(OS,MINGW32,[
|