Commit 5aac3e5a authored by Sam Hocevar's avatar Sam Hocevar

* src/Makefile.am: fixed sed commands.

parent c60745f8
...@@ -128,7 +128,7 @@ if USE_LIBTOOL ...@@ -128,7 +128,7 @@ if USE_LIBTOOL
../modules/*.a) echo $$c ;; \ ../modules/*.a) echo $$c ;; \
esac ; \ esac ; \
done | \ done | \
sed -e 's/^\(.*\)\/\([^\/]*\)\.a$$/cd \1 \&\& $(MAKE) \2_builtin.la/g' | \ sed -e 's,^\(.*\)/\([^/]*\)\.a$$,cd \1 \&\& $(MAKE) \2_builtin.la,g' | \
while read cmd; do echo $$cmd; eval "($$cmd)" || exit $$? ; done while read cmd; do echo $$cmd; eval "($$cmd)" || exit $$? ; done
endif endif
if BUILD_SHARED if BUILD_SHARED
...@@ -137,7 +137,7 @@ if BUILD_SHARED ...@@ -137,7 +137,7 @@ if BUILD_SHARED
../modules/*.a) echo $$c ;; \ ../modules/*.a) echo $$c ;; \
esac ; \ esac ; \
done | \ done | \
sed -e 's/^\(.*\)\/\([^\/]*\)\.a$$/cd \1 \&\& $(MAKE) \2/g' | \ sed -e 's,^\(.*\)/\([^/]*\)\.a$$,cd \1 \&\& $(MAKE) \2,g' | \
while read cmd; do echo $$cmd.a; eval "($$cmd.a)" || exit $$? ; done while read cmd; do echo $$cmd.a; eval "($$cmd.a)" || exit $$? ; done
endif endif
touch $@ touch $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment