forked from lanl/bml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit 72338c2 introduced a regression which broke the `install` verb of the `build.sh` script. Running `make install` implies building the library whereas `cmake --install` does not and expects the project to be built. Signed-off-by: Nicolas Bock <[email protected]>
- Loading branch information
1 parent
782f514
commit 012fa6a
Showing
2 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
;;; Directory Local Variables | ||
;;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((c-mode | ||
((c-basic-offset . 4) | ||
(c-offsets-alist . ((arglist-intro . 4))))) | ||
(f90-mode | ||
((f90-if-indent . 2) | ||
(f90-do-indent . 2) | ||
(f90-type-indent . 2)))) | ||
((c-mode . (((c-basic-offset . 4) . ((c-offsets-alist | ||
(arglist-intro . 4)))))) | ||
(f90-mode . (((f90-if-indent . 2) . ((f90-do-indent . 2) | ||
(f90-type-indent . 2))))) | ||
(sh-mode . ((sh-basic-offset . 4)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters