From e66beaea7d4aad2ec4e796649574ea7b746e5939 Mon Sep 17 00:00:00 2001 From: raster Date: Sat, 24 Apr 2010 14:33:10 +0000 Subject: [PATCH] apparently fbsd is unaware of expr substr... git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eet@48277 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 35bff74..388b73d 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -135,7 +135,7 @@ eet_amalgamation.c: $(base_sources) Makefile @echo "#include \"Eet.h\"" >> eet_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