diff options
author | Roy Marples <roy@marples.name> | 2008-01-03 17:23:42 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-03 17:23:42 +0000 |
commit | 5ce37e1cef27059193ad75c35d752af85d1288e3 (patch) | |
tree | efddfc676e976052d1055d4e796864ded558137d /src/Makefile | |
parent | f56929ea7da4a726f96bc7d91e953da6ea22d70d (diff) |
Ensure that copyright is unique for rc, librc and libeinfo. Also, fix branding a little.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5d78b501..01ecf9ba 100644 --- a/src/Makefile +++ b/src/Makefile @@ -100,7 +100,9 @@ all: .depend $(TARGET) version.h: sed -n -e 's/^VERSION =[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1\"/p' ../Makefile > version.h - test -n "${BRANDING}" && echo "#define BRANDING \"${BRANDING}\"" >> version.h + if test -n "${BRANDING}"; then \ + echo "#define BRANDING \"${BRANDING}\"" >> version.h; \ + fi $(LIBEINFOOBJS): $(CC) $(CPPFLAGS) $(CPPFLAGS_LIBEINFO) $(CFLAGS) -fPIC -c $< |