gnu: avr-libc: Unset CPATH to fix the build.
authorRicardo Wurmus <rekado@elephly.net>
Thu, 19 Sep 2019 13:56:39 +0000 (15:56 +0200)
committerRicardo Wurmus <rekado@elephly.net>
Thu, 19 Sep 2019 19:33:44 +0000 (21:33 +0200)
* gnu/packages/avr.scm (avr-libc)[arguments]: Unset CPATH variable.

gnu/packages/avr.scm

index 6eb0ad8..1f99f63 100644 (file)
        (modify-phases %standard-phases
          (add-before 'unpack 'fix-cpath
            (lambda _
-             ;; C_INCLUDE_PATH poses issues for cross-building, leading to
-             ;; failures when building avr-libc on 64-bit systems.  Simply
-             ;; unsetting it allows the build to succeed because it doesn't
-             ;; try to use any of the native system's headers.
+             ;; C_INCLUDE_PATH and CPATH pose issues for cross-building,
+             ;; leading to failures when building avr-libc on 64-bit systems.
+             ;; Simply unsetting them allows the build to succeed because it
+             ;; doesn't try to use any of the native system's headers.
              (unsetenv "C_INCLUDE_PATH")
+             (unsetenv "CPATH")
              #t)))))
     (native-inputs `(("avr-binutils" ,avr-binutils)
                      ("avr-gcc" ,avr-gcc)))