blob: 321e710cb2b8decfbfd2f7c8416b869aeab6317d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Having a sed command at the top of the Makefile will break with
current (3.82) GNU make.
2011-05-23 Martin von Gagern
Index: eresi-0.82_beta2/configure
===================================================================
--- eresi-0.82_beta2.orig/configure
+++ eresi-0.82_beta2/configure
@@ -618,10 +618,10 @@ echo "RM = rm -f "
echo "" >> Makefile
echo "all : world modules testsuite tags" >> Makefile
+sed -ie "s%TESTING_ROOT=.*%TESTING_ROOT=`pwd`/%" eresi-config
+
cat >> Makefile <<EOF
-sed -ie "s%TESTING_ROOT=.*%TESTING_ROOT=`pwd`/%" eresi-config
-
ifdef NAME
include build/defs/dep-rules.def
component: dep-\$(NAME)
|