mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +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.
29 lines
826 B
Diff
29 lines
826 B
Diff
diff --git a/Makefile.am b/Makefile.am
|
|
index 10708e7..d4efd73 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -150,13 +150,6 @@ cppcheck:
|
|
docs:
|
|
$(MAKE) -C doc/sphinx
|
|
|
|
-
|
|
-# These steps are necessary during installation
|
|
-install-exec-hook:
|
|
- mkdir -p $(DESTDIR)${localstatedir}/log/
|
|
- mkdir -p $(DESTDIR)${localstatedir}/lib/${PACKAGE_NAME}
|
|
- mkdir -p $(DESTDIR)${runstatedir}/${PACKAGE_NAME}
|
|
-
|
|
EXTRA_DIST = tools/path_replacer.sh
|
|
EXTRA_DIST += tools/mk_cfgrpt.sh
|
|
|
|
diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am
|
|
index a0a0289..ba42f8a 100644
|
|
--- a/src/lib/dhcpsrv/Makefile.am
|
|
+++ b/src/lib/dhcpsrv/Makefile.am
|
|
@@ -408,5 +408,3 @@ libkea_dhcpsrv_parsers_include_HEADERS = \
|
|
parsers/simple_parser4.h \
|
|
parsers/simple_parser6.h
|
|
|
|
-install-data-local:
|
|
- $(mkinstalldirs) $(DESTDIR)$(dhcp_data_dir)
|