mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 07:10:34 -08:00
The shells need the '-c' flag to execute the script mkinstalldir properly. Otherwise /bin/csh will think that mkinstalldir is a C-shell script, which it is not.
This commit is contained in:
parent
a5368d913a
commit
82ab667354
2 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ libdir=@libdir@
|
|||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/gc/mkinstalldirs
|
||||
mkinstalldirs = $(SHELL) -c $(top_srcdir)/gc/mkinstalldirs
|
||||
|
||||
# Files
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ manext=1
|
|||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/gc/mkinstalldirs
|
||||
mkinstalldirs = $(SHELL) -c $(top_srcdir)/gc/mkinstalldirs
|
||||
|
||||
VERSION=@ECL_VERSION@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue