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 /netware | |
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 'netware')
-rw-r--r-- | netware/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/netware/Makefile.am b/netware/Makefile.am index c83a5b389ab..3ec9c7794bf 100644 --- a/netware/Makefile.am +++ b/netware/Makefile.am @@ -90,20 +90,20 @@ EXTRA_DIST= $(BUILT_SOURCES) comp_err.def install_test_db.ncf \ # Build init_db.sql from the files that contain # the system tables for this version of MySQL plus any commands init_db.sql: $(top_srcdir)/scripts/mysql_system_tables.sql \ - $(top_srcdir)/scripts/mysql_system_tables_data.sql + $(top_srcdir)/scripts/mysql_system_tables_data.sql @echo "Building $@"; @echo "CREATE DATABASE mysql;" > $@; @echo "CREATE DATABASE test;" >> $@; @echo "use mysql;" >> $@; @cat $(top_srcdir)/scripts/mysql_system_tables.sql \ - $(top_srcdir)/scripts/mysql_system_tables_fix.sql >> $@; + $(top_srcdir)/scripts/mysql_system_tables_fix.sql >> $@; # Build test_db.sql from init_db.sql plus # some test data test_db.sql: init_db.sql $(top_srcdir)/scripts/mysql_test_data_timezone.sql @echo "Building $@"; @cat init_db.sql \ - $(top_srcdir)/scripts/mysql_test_data_timezone.sql >> $@; + $(top_srcdir)/scripts/mysql_test_data_timezone.sql >> $@; endif |