Loading pkgs/development/interpreters/clisp/default.nix +11 −8 Original line number Diff line number Diff line Loading @@ -25,8 +25,8 @@ , xorgproto , coreutils # build options , threadSupport ? stdenv.hostPlatform.isx86 , x11Support ? stdenv.hostPlatform.isx86 , threadSupport ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin) , x11Support ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin) , dllSupport ? true , withModules ? [ "pcre" Loading Loading @@ -82,13 +82,16 @@ stdenv.mkDerivation { ''; preConfigure = lib.optionalString stdenv.isDarwin ('' ( cd src autoreconf -f -i -I m4 -I glm4 cd - ) '' + lib.concatMapStrings (x: '' ( root="$PWD" cd modules/${x} autoreconf -f -i -I ../../src -I ../../src/m4 -I ../../src/glm4 cd - autoreconf -f -i -I "$root/src" -I "$root/src/m4" -I "$root/src/glm4" ) '') withModules); configureFlags = [ "builddir" ] Loading Loading
pkgs/development/interpreters/clisp/default.nix +11 −8 Original line number Diff line number Diff line Loading @@ -25,8 +25,8 @@ , xorgproto , coreutils # build options , threadSupport ? stdenv.hostPlatform.isx86 , x11Support ? stdenv.hostPlatform.isx86 , threadSupport ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin) , x11Support ? (stdenv.hostPlatform.isx86 && ! stdenv.hostPlatform.isDarwin) , dllSupport ? true , withModules ? [ "pcre" Loading Loading @@ -82,13 +82,16 @@ stdenv.mkDerivation { ''; preConfigure = lib.optionalString stdenv.isDarwin ('' ( cd src autoreconf -f -i -I m4 -I glm4 cd - ) '' + lib.concatMapStrings (x: '' ( root="$PWD" cd modules/${x} autoreconf -f -i -I ../../src -I ../../src/m4 -I ../../src/glm4 cd - autoreconf -f -i -I "$root/src" -I "$root/src/m4" -I "$root/src/glm4" ) '') withModules); configureFlags = [ "builddir" ] Loading