diff options
author | unknown <joerg@trift2.> | 2007-05-02 14:01:49 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-05-02 14:01:49 +0200 |
commit | 589ae7b4e090aa866b492a823f7e773bda03e1ec (patch) | |
tree | fd3abbbab82cfb05e271c65b52e647f89815b82e /client | |
parent | dc9b20a60301040cfc3801703f4799c5e60477a3 (diff) | |
download | mariadb-git-589ae7b4e090aa866b492a823f7e773bda03e1ec.tar.gz |
Format corrections for various "Makefile.am": Leading tab, no trailing blank.
client/Makefile.am:
"Makefile" command lines must start with a tab, not with blanks.
libmysqld/Makefile.am:
"Makefile" command lines must start with a tab, not with blanks.
netware/Makefile.am:
"Makefile" command lines must start with a tab, not with blanks.
scripts/Makefile.am:
"Makefile" command lines must start with a tab, not with blanks.
win/Makefile.am:
After a backslash (to mark a continuation line) there must not be a trailing blank.
Diffstat (limited to 'client')
-rw-r--r-- | client/Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/client/Makefile.am b/client/Makefile.am index 5f1569ba2c4..c7663c7da82 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -64,13 +64,13 @@ link_sources: for f in $(sql_src) ; do \ rm -f $$f; \ @LN_CP_F@ $(top_srcdir)/sql/$$f $$f; \ - done; \ - for f in $(strings_src) ; do \ - rm -f $(srcdir)/$$f; \ - @LN_CP_F@ $(top_srcdir)/strings/$$f $$f; \ - done; \ - rm -f $(srcdir)/my_user.c; \ - @LN_CP_F@ $(top_srcdir)/sql-common/my_user.c my_user.c; + done; \ + for f in $(strings_src) ; do \ + rm -f $(srcdir)/$$f; \ + @LN_CP_F@ $(top_srcdir)/strings/$$f $$f; \ + done; \ + rm -f $(srcdir)/my_user.c; \ + @LN_CP_F@ $(top_srcdir)/sql-common/my_user.c my_user.c; # Don't update the files from bitkeeper |