mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
571c71e6f7
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.
19 lines
711 B
Diff
19 lines
711 B
Diff
diff -Naur b43-fwcutter-015-orig/Makefile b43-fwcutter-015/Makefile
|
|
--- b43-fwcutter-015-orig/Makefile 2011-08-21 08:17:01.000000000 -0400
|
|
+++ b43-fwcutter-015/Makefile 2012-07-13 17:57:53.002154557 -0400
|
|
@@ -51,10 +51,10 @@
|
|
$(QUIET_CC) $(CFLAGS) -o $(BIN) $(call OBJS,$(SRCS)) $(LDFLAGS)
|
|
|
|
install: all
|
|
- install -d -o 0 -g 0 -m 755 $(PREFIX)/bin/
|
|
- install -o 0 -g 0 -m 755 $(BIN) $(PREFIX)/bin/
|
|
- install -d -o 0 -g 0 -m 755 $(PREFIX)/man/man1/
|
|
- install -o 0 -g 0 -m 644 $(BIN).1 $(PREFIX)/man/man1/
|
|
+ install -d -m 755 $(PREFIX)/bin/
|
|
+ install -m 755 $(BIN) $(PREFIX)/bin/
|
|
+ install -d -m 755 $(PREFIX)/man/man1/
|
|
+ install -m 644 $(BIN).1 $(PREFIX)/man/man1/
|
|
|
|
clean:
|
|
-rm -Rf obj dep *.orig *.rej *~
|