Fix load path bug

This commit is contained in:
retropikzel 2024-08-30 21:47:11 +03:00
parent ead9f031d5
commit 3146a6933f
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
((packager . "retropikzel") ((packager . "retropikzel")
(name . "r7rs-pffi") (name . "r7rs-pffi")
(version . "v0-4-3") (version . "v0-4-4")
(type . "library") (type . "library")
(description . "Portable Foreign Function Interface for R7RS schemes") (description . "Portable Foreign Function Interface for R7RS schemes")
(license . "LGPL") (license . "LGPL")

View File

@ -184,7 +184,7 @@
"/run/current-system/profile/lib") "/run/current-system/profile/lib")
; Debian ; Debian
(if (get-environment-variable "LD_LIBRARY_PATH") (if (get-environment-variable "LD_LIBRARY_PATH")
(list (string-split (get-environment-variable "LD_LIBRARY_PATH") #\:)) (string-split (get-environment-variable "LD_LIBRARY_PATH") #\:)
(list)) (list))
(list (list
;;; x86-64 ;;; x86-64