Commit 6a096e14 authored by sternenseemann's avatar sternenseemann
Browse files

emacs.pkgs.ada-mode: fix installPhase

The invocation of the install.sh script changed in 8.1.0 or 8.0 to no
longer accept the --prefix flag, instead the path needs to be given as
the first argument alone.
parent 7db5b159
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ self: let
        '';

        postInstall = (old.postInstall or "") + "\n" + ''
          ./install.sh --prefix=$out
          ./install.sh "$out"
        '';

        meta = old.meta // {