diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-10-23 12:13:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-10-23 12:13:16 +0200 |
commit | 53d936af40ca044289695404d577e99f6cca2304 (patch) | |
tree | 9086dc051a237a4becd739946b146fde948d6195 /common/changelog/makefile | |
parent | ff265813bccf264cae2caf83d319efb9fcf11e30 (diff) |
Get rid of command for target that has nothing to build
This makes a difference in make output. Without the command we get
"Nothing to be done..." (which is what we want) while with the
command we get no diagnostics.
Diffstat (limited to 'common/changelog/makefile')
-rw-r--r-- | common/changelog/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/changelog/makefile b/common/changelog/makefile index bd0f243..2f900c1 100644 --- a/common/changelog/makefile +++ b/common/changelog/makefile @@ -52,7 +52,7 @@ endif $(default): $(gen) else -$(default): ;@: +$(default): endif # Dist: not supported. |