From 4f40e931a5b89fa56753b44fb25fe5a384f8c279 Mon Sep 17 00:00:00 2001 From: raster Date: Sat, 24 Apr 2010 14:31:36 +0000 Subject: [PATCH] apparently fbsd is unaware of expr substr... git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@48276 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index b21f195..bec0f28 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -111,7 +111,7 @@ edje_amalgamation.c: $(base_sources) Makefile @echo "#include " >> edje_amalgamation.c @for f in $(base_sources); do \ - if [ `expr substr $$f 1 1` != '/' ]; then \ + if [ `echo $$f | sed -e 's/^...\(.\).*/\1/'` != '/' ]; then \ file="$(srcdir)/$$f" ; \ else \ file="$$f" ; \ -- 2.7.4