You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile.in
+3-3
Original file line number
Diff line number
Diff line change
@@ -249,12 +249,12 @@ endef
249
249
# by $(2) with a space character prefix, which invalidates the
250
250
# construction $(1)$(2).
251
251
defineCHECK_FOR_OLD_GLOB_MATCHES_EXCEPT
252
-
$(Q)MATCHES="$(filter-out%$(3),$(wildcard$(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: there are previous" \'$(2)\' "libraries:" $$MATCHES; fi
252
+
$(Q)MATCHES="$(filter-out%$(3),$(wildcard$(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "warning: there are previous" \'$(2)\' "libraries:" $$MATCHES; fi
253
253
endef
254
254
255
255
# Same interface as above, but deletes rather than just listing the files.
256
256
defineREMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT
257
-
$(Q)MATCHES="$(filter-out%$(3),$(wildcard$(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
257
+
$(Q)MATCHES="$(filter-out%$(3),$(wildcard$(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
258
258
endef
259
259
260
260
# We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
@@ -265,7 +265,7 @@ endef
265
265
# be run at the outset of a command list in a rule.)
266
266
ifdefVERBOSE
267
267
defineLIST_ALL_OLD_GLOB_MATCHES_EXCEPT
268
-
@echo "Info: now are following matches for" '$(2)' "libraries:"
268
+
@echo "info: now are following matches for" '$(2)' "libraries:"
269
269
@( cd $(1) && ( ls $(2) 2>/dev/null || true ) | grep -v $(3) || true )
0 commit comments