mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-18 00:18:11 +00:00
correct makesrcdir when subdir is .
This commit is contained in:
parent
a14b294143
commit
9546e9b45c
11
ChangeLog
11
ChangeLog
@ -1,5 +1,16 @@
|
||||
Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
|
||||
|
||||
* Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
|
||||
MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
|
||||
|
||||
Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
|
||||
|
||||
* configure: mkdir ${subdir} as needed.
|
||||
|
||||
Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
|
||||
|
||||
* Makefile.in: no longer pass against on recursion.
|
||||
|
||||
* Makefile.in: added .NOEXPORT: so that stray makefile_frag
|
||||
definitions are not inherited.
|
||||
|
||||
|
6
configure
vendored
6
configure
vendored
@ -479,6 +479,10 @@ for subdir in . ${subdirs} ; do
|
||||
Makefile=${subdir}/Makefile
|
||||
fi
|
||||
|
||||
if [ ! -d ${subdir} ] ; then
|
||||
mkdir ${subdir}
|
||||
fi
|
||||
|
||||
case "${removing}" in
|
||||
"")
|
||||
if [ -n "${verbose}" -o -z "${silent}" ] ; then
|
||||
@ -622,7 +626,7 @@ EOF
|
||||
# Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
|
||||
case "${host_alias}" in
|
||||
"${target_alias}")
|
||||
tooldir="\$(libdir)"
|
||||
tooldir='$(libdir)'
|
||||
echo "ALL=all.internal" >> ${Makefile}
|
||||
;;
|
||||
*)
|
||||
|
Loading…
x
Reference in New Issue
Block a user