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 | 4e95b9dc3b44ea6bb4219ca23bb324a782f56525 (patch) | |
tree | fd3abbbab82cfb05e271c65b52e647f89815b82e /netware | |
parent | 4cdaefed6f046dab1e1f572af17ee8c81c6eb829 (diff) | |
download | mariadb-git-4e95b9dc3b44ea6bb4219ca23bb324a782f56525.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 |