mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
ca7f72dba1
- use --enable-assembler for ${ARCH}==i386 Requested by: Martin Nilsson <martin@filex.se> There is an annoying bug in gcc 2.7.2.*: If -pipe is used for .s files, gcc will "hang" forever, because the assembler is called with '-' and noone is sending data. As a workaround use .S (capital s) files. Then cpp will be called prior to as and thus a pipe can be build.
36 lines
975 B
Plaintext
36 lines
975 B
Plaintext
--- scripts/mysql_install_db.sh.orig Sat Aug 28 13:10:54 1999
|
|
+++ scripts/mysql_install_db.sh Mon Sep 13 00:13:04 1999
|
|
@@ -15,10 +15,6 @@
|
|
force=0
|
|
IN_RPM=0
|
|
|
|
-# Are we doing an rpm install?
|
|
-if test "$1" = "-IN-RPM"; then IN_RPM=1; shift; fi
|
|
-if test "$1" = "--force"; then force=1; shift; fi
|
|
-
|
|
# Get mysqld/safe_mysqld options from /etc/my.cnf or ~/.my.cnf
|
|
if test -w /
|
|
then
|
|
@@ -60,8 +56,6 @@
|
|
fi
|
|
fi
|
|
|
|
-# On IRIX hostname is in /usr/bsd so add this to the path
|
|
-PATH=$PATH:/usr/bsd
|
|
hostname=`hostname` # Install this too in the user table
|
|
|
|
# Check if hostname is valid
|
|
@@ -255,12 +249,6 @@
|
|
END_OF_DATA
|
|
then
|
|
echo ""
|
|
- if test "$IN_RPM" -eq 0
|
|
- then
|
|
- echo "To start mysqld at boot time you have to copy support-files/mysql.server"
|
|
- echo "to the right place for your system"
|
|
- echo
|
|
- fi
|
|
echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
|
|
echo "This is done with:"
|
|
echo "$bindir/mysqladmin -u root password 'new-password'"
|