Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
85a6217e
Commit
85a6217e
authored
Dec 23, 2017
by
IKEDA Soji
Browse files
Create css_path during installation.
parent
407a17e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
85a6217e
...
...
@@ -108,7 +108,7 @@ installdir:
done
@
echo
"Creating writable directories"
-
@for
dir
in
$(expldir)
$(spooldir)
$(bouncedir)
$(arcdir)
$(piddir)
\
$(staticdir)
$(staticdir)
/js
$(sysconfdir)
;
do
\
$(sysconfdir)
;
do
\
if
[
!
-d
$(DESTDIR)$$
dir
]
;
then
\
echo
"Creating
$(DESTDIR)$$
dir"
;
\
$(INSTALL)
-d
-m
755
$(DESTDIR)$$
dir
;
\
...
...
www/Makefile.am
View file @
85a6217e
...
...
@@ -422,4 +422,13 @@ EXTRA_DIST = $(nobase_static_DATA)
install-data-hook
:
cd
$(DESTDIR)$(staticdir)
;
\
rm
-f
external/foundation/js/vendor/jquery.js
@
echo
"Creating writable directories"
-
@for
dir
in
$(staticdir)
/css
;
do
\
if
[
!
-d
$(DESTDIR)$$
dir
]
;
then
\
echo
"Creating
$(DESTDIR)$$
dir"
;
\
$(INSTALL)
-d
-m
755
$(DESTDIR)$$
dir
;
\
fi
;
\
chown
$(USER)
$(DESTDIR)$$
dir
;
\
chgrp
$(GROUP)
$(DESTDIR)$$
dir
;
\
done
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment