Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6cf09609 authored by Howard Chen's avatar Howard Chen Committed by android-build-merger
Browse files

Merge "Add a make maco to convert string to upper case" am: 8eff2d7c am:...

Merge "Add a make maco to convert string to upper case" am: 8eff2d7c am: fd380f20 am: 0b2aebab
am: f07747f7

Change-Id: I1359edef0e8197dbb6184d7a1460fdc1306636f9
parents 89cbb261 f07747f7
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1864,6 +1864,11 @@ to-lower = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F
$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,\
$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,\
$(subst X,x,$(subst Y,y,$(subst Z,z,$1))))))))))))))))))))))))))
# Convert to upper case without requiring a shell, which isn't cacheable.
to-upper=$(subst a,A,$(subst b,B,$(subst c,C,$(subst d,D,$(subst e,E,$(subst f,F,$(subst g,G,\
$(subst h,H,$(subst i,I,$(subst j,J,$(subst k,K,$(subst l,L,$(subst m,M,$(subst n,N,$(subst o,O,\
$(subst p,P,$(subst q,Q,$(subst r,R,$(subst s,S,$(subst t,T,$(subst u,U,$(subst v,V,$(subst w,W,\
$(subst x,X,$(subst y,Y,$(subst z,Z,$1))))))))))))))))))))))))))

# -----------------------------------------------------------------
# vbmeta image