diff options
| -rw-r--r-- | templates/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/Makefile.in b/templates/Makefile.in index 1d8c15d61..bb01fa2ad 100644 --- a/templates/Makefile.in +++ b/templates/Makefile.in @@ -29,6 +29,7 @@ exec_prefix= @exec_prefix@ CC= @CC@ CHMOD= @CHMOD@ INSTALL= @INSTALL@ +TRUE= @TRUE@ DEFS= @DEFS@ @@ -58,7 +59,7 @@ all: install: for f in $(TEMPLATES); \ do \ - mv -f $(TEMPLATEDIR)/$$f $(TEMPLATEDIR)/$$f.prev || /bin/true; \ + mv -f $(TEMPLATEDIR)/$$f $(TEMPLATEDIR)/$$f.prev || $(TRUE); \ $(INSTALL) -m $(FILEMODE) $$f $(TEMPLATEDIR); \ done |
