Skip to content

Commit 95bbd40

Browse files
committed
Fix sed to replace by the correct var
1 parent 15d91ef commit 95bbd40

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile.pc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ include config.mk
44
all:
55
echo "prefix=$(prefix)" > egl.pc
66
cat egl.pc.in >> egl.pc
7-
sed -i "s/MVERSION/$MALI_VERSION/g" egl.pc
7+
sed -i "s/MVERSION/${MALI_VERSION}/g" egl.pc
88
echo "prefix=$(prefix)" > gles_cm.pc
99
cat gles_cm.pc.in >> gles_cm.pc
10-
sed -i "s/MVERSION/$MALI_VERSION/g" gles_cm.pc
10+
sed -i "s/MVERSION/${MALI_VERSION}/g" gles_cm.pc
1111
echo "prefix=$(prefix)" > glesv2.pc
1212
cat glesv2.pc.in >> glesv2.pc
13-
sed -i "s/MVERSION/$MALI_VERSION/g" glesv2.pc
13+
sed -i "s/MVERSION/${MALI_VERSION}/g" glesv2.pc
1414

1515
install: egl.pc gles_cm.pc glesv2.pc
1616
$(MKDIR) $(libdir)/pkgconfig

0 commit comments

Comments
 (0)