File tree 4 files changed +9
-7
lines changed 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ ifneq "$(strip $(NX_VERSION_CUSTOM))" ""
116
116
endif
117
117
118
118
imakeconfig :
119
- @echo;
119
+ @echo
120
120
@echo " ===> $@ "
121
121
# auto-config some setting
122
122
Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ clean cleantc:: @@\
547
547
:; \ @@\
548
548
else \ @@\
549
549
if [ -h dir ]; then \ @@\
550
- (test -n "${VERBOSE}" && test -n "${VERBOSE}" && set -x; rm -f dir); \ @@\
550
+ (test -n "${VERBOSE}" && set -x; rm -f dir); \ @@\
551
551
fi; \ @@\
552
552
(test -n "${VERBOSE}" && set -x; $(MKDIRHIER) dir); \ @@\
553
553
fi
@@ -1976,7 +1976,7 @@ DependDependencyStatement() @@\
1976
1976
NoCmpScript(ProgramTargetName($(DEPEND))) @@\
1977
1977
@@\
1978
1978
ProgramTargetName($(DEPEND)): @@\
1979
- @echo "using system-wide depend, continuing in $(CURRENT_DIR)"
1979
+ @test -z "${VERBOSE}" || echo "using system-wide depend, continuing in $(CURRENT_DIR)"
1980
1980
1981
1981
#endif /* UseInstalled */
1982
1982
#endif /* DependDependency */
@@ -2069,7 +2069,7 @@ target:: ProgramTargetName($(IMAKE)) @@\
2069
2069
NoCmpScript(ProgramTargetName($(IMAKE)) $(IMAKE).Osuf) @@\
2070
2070
@@\
2071
2071
ProgramTargetName($(IMAKE)) $(IMAKE).Osuf: @@\
2072
- @echo "using system-wide imake, continuing in $(CURRENT_DIR)"
2072
+ @test -z "${VERBOSE}" || echo "using system-wide imake, continuing in $(CURRENT_DIR)"
2073
2073
#endif /* UseInstalled */
2074
2074
#endif /* ImakeDependency */
2075
2075
Original file line number Diff line number Diff line change @@ -1500,7 +1500,7 @@ install:: deps @@\
1500
1500
$(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) name.html \ @@\
1501
1501
$(DESTDIR)$(DOCHTMLDIR)); \ @@\
1502
1502
for i in name*.png; do \ @@\
1503
- if [ -f $$i ]; then (test -n "${VERBOSE}" && test -n "${VERBOSE}" && set -x; \ @@\
1503
+ if [ -f $$i ]; then (test -n "${VERBOSE}" && set -x; \ @@\
1504
1504
$(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) $$i \ @@\
1505
1505
$(DESTDIR)$(DOCHTMLDIR)); \ @@\
1506
1506
fi; \ @@\
Original file line number Diff line number Diff line change @@ -136,7 +136,8 @@ install:: Concat(lib,libname.so.rev) @@\
136
136
install:: Concat(lib,libname.so) @@\
137
137
MakeDir($(DESTDIR)dest) @@\
138
138
@set +e; SetRevisions(rev); \ @@\
139
- test -n "${VERBOSE}" && set -xe; \ @@\
139
+ set -e; \ @@\
140
+ test -n "${VERBOSE}" && set -x; \ @@\
140
141
$(INSTALL) $(INSTALLFLAGS) $(INSTBINFLAGS) Concat(lib,libname.so.$$MAJ.$$MIN) $(DESTDIR)dest; \ @@\
141
142
$(RM) Concat($(DESTDIR)dest/lib,libname.so.$$MAJ); \ @@\
142
143
$(LN) Concat(lib,libname.so.$$MAJ.$$MIN) Concat($(DESTDIR)dest/lib,libname.so.$$MAJ); \ @@\
@@ -207,7 +208,8 @@ Concat(lib,libname.so): solist $(EXTRALIBRARYDEPS) @@\
207
208
@@\
208
209
clean:: @@\
209
210
@set +e; SetRevisions(rev); \ @@\
210
- test -n "${VERBOSE}" && set -xe; \ @@\
211
+ set -e; \ @@\
212
+ test -n "${VERBOSE}" && set -xe; \ @@\
211
213
$(RM) Concat(lib,libname.so.$$MAJ); \ @@\
212
214
$(RM) Concat(lib,libname.so.$$MAJ.$$MIN) @@\
213
215
$(RM) Concat(lib,libname.so)
You can’t perform that action at this time.
0 commit comments