Skip to content
Snippets Groups Projects
Commit a618adff authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

fix skel build

parent eb500289
No related branches found
No related tags found
No related merge requests found
......@@ -114,10 +114,11 @@ $(DESTDIR)$(datadir)/%: skel/%
exec $(INSTALL) -D -m 644 $< $@
grep -- ^$(@F) < package/modes | { read name mode owner && \
if [ x$$owner != x ] ; then chown -- $$owner $@ ; fi && \
chmod $$mode $@ ; }
chmod $$mode $@ ; } && \
exec sed -e "s/@BINDIR@/$(subst /,\/,$(bindir))/g" \
-e "s/@EXECLINE_SHEBANGPREFIX@/$(subst /,\/,$(shebangdir))/g" $< > $@
exec sed -e "s/@LIVEDIR@/$(subst /,\/,$(livedir))/g" $< > $@
-e "s/@EXECLINE_SHEBANGPREFIX@/$(subst /,\/,$(shebangdir))/g" \
-e "s/@LIVEDIR@/$(subst /,\/,$(livedir))/g" $< > $@
$(DESTDIR)$(system_log)/% $(DESTDIR)$(service_packager)/% $(DESTDIR)$(service_sys)/% $(DESTDIR)$(service_sysconf)/% :
exec $(INSTALL) -D -m 0755 $< $@
......
......@@ -17,6 +17,3 @@ echo [Initiate db of tree ${TREE}]
echo [Start db services of tree ${TREE}]
66-dbctl -v${VERBOSITY} -l ${LIVE} -t ${TREE} -u ||
{ echo "rc.init: fatal: please see the log at ${LIVE}/log/0/current" ; ${ISHELL} ; exit 111 ; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment