mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
All 'Makefile's must use '$(AR)' (not just 'ar') because the variable may contain options.
libmysqld/Makefile.am: Always use 'make' variable '$(AR)' so that options (AIX 64 bit!) are included. BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
This commit is contained in:
@ -89,9 +89,9 @@ libmysqld.a: libmysqld_int.a $(INC_LIB)
|
||||
cd tmp ; \
|
||||
for file in *.a ; do \
|
||||
bfile=`basename $$file .a` ; \
|
||||
ar x $$file; \
|
||||
$(AR) x $$file; \
|
||||
for obj in *.o ; do mv $$obj $${bfile}_$$obj ; done ; \
|
||||
ar q ../libmysqld_int2.a *.o ; \
|
||||
$(AR) q ../libmysqld_int2.a *.o ; \
|
||||
rm -f *.o ; \
|
||||
done ; \
|
||||
cd .. ; \
|
||||
|
Reference in New Issue
Block a user