mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 08:04:47 +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.
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
diff --git a/configure.ac b/configure.ac
|
|
index 4ffb68f..d8a8265 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -71,15 +71,16 @@ AM_CONDITIONAL(TEST_BINARY_FORMAT, [ test "$EFI_ARCH" = "arm" -o "$EFI_ARCH" = "
|
|
# no consistent view of where gnu-efi should dump the efi stuff, so find it
|
|
##
|
|
for path in /lib /lib64 /usr/lib /usr/lib64 /usr/lib32 /lib/efi /lib64/efi /usr/lib/efi /usr/lib64/efi /usr/lib/gnuefi /usr/lib64/gnuefi ; do
|
|
- if test -e $path/crt0-efi-$EFI_ARCH.o; then
|
|
- CRTPATH=$path
|
|
+ if test -e @@NIX_GNUEFI@@/$path/crt0-efi-$EFI_ARCH.o; then
|
|
+ CRTPATH=@@NIX_GNUEFI@@/$path
|
|
+ break
|
|
fi
|
|
done
|
|
if test -z "$CRTPATH"; then
|
|
AC_MSG_ERROR([cannot find the gnu-efi crt path])
|
|
fi
|
|
|
|
-EFI_CPPFLAGS="-I/usr/include/efi -I/usr/include/efi/$EFI_ARCH \
|
|
+EFI_CPPFLAGS="-I@@NIX_GNUEFI@@/include/efi -I@@NIX_GNUEFI@@/include/efi/$EFI_ARCH \
|
|
-DEFI_FUNCTION_WRAPPER"
|
|
CPPFLAGS_save="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $EFI_CPPFLAGS"
|
|
@@ -90,5 +91,5 @@ AC_SUBST(EFI_ARCH, $EFI_ARCH)
|
|
AC_SUBST(CRTPATH, $CRTPATH)
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile lib/ccan/Makefile]
|
|
- [docs/Makefile tests/Makefile])
|
|
+ [docs/Makefile])
|
|
AC_OUTPUT
|