1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-26 17:25:10 +03:00

makefiles: no need for double Q

We already use $(Q) while calling macros
This commit is contained in:
Zdenek Kabelac 2021-04-11 22:29:04 +02:00
parent 2e84dd47d4
commit f5efe1beb5

View File

@ -133,7 +133,7 @@ SEE_ALSO=$(srcdir)/see_also.end
) > $@
define SUBSTVARS
$(Q)$(SED) -e "s+#VERSION#+$(LVM_VERSION)+" \
$(SED) -e "s+#VERSION#+$(LVM_VERSION)+" \
-e "s+#DEFAULT_SYS_DIR#+$(DEFAULT_SYS_DIR)+" \
-e "s+#DEFAULT_ARCHIVE_DIR#+$(DEFAULT_ARCHIVE_DIR)+" \
-e "s+#DEFAULT_BACKUP_DIR#+$(DEFAULT_BACKUP_DIR)+" \
@ -157,7 +157,7 @@ endef
# - in "$vg-$lv"
# - in single one in '\\f.-'
define ESCAPEHYPHENS
$(Q)$(SED) -i -e "s+\([ [:alpha:]]\)-\{7\}+\1\\\-\\\-\\\-\\\-\\\-\\\-\\\-+g" \
$(SED) -i -e "s+\([ [:alpha:]]\)-\{7\}+\1\\\-\\\-\\\-\\\-\\\-\\\-\\\-+g" \
-e "s+\([ [:alpha:]]\)-\{6\}+\1\\\-\\\-\\\-\\\-\\\-\\\-+g" \
-e "s+\([ [:alpha:]]\)-\{5\}+\1\\\-\\\-\\\-\\\-\\\-+g" \
-e "s+\([ [:alpha:]]\)-\{4\}+\1\\\-\\\-\\\-\\\-+g" \