mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
python: update upstream-status for patches binutils: update upstream-status for patches gcc 4.5.1 4.6.0: update upstream-status for patches autoconf: update upstream-status for patches automake: update upstream-status for patches bison: update upstream-status for patches distcc: update upstream-status of patches fstests: update upstream-status for patches gdb: update upstream-status of patches intltool: update upstream-status of patches libtool: update upstream status of patches linux-libc-headers: update upstream-status for patches make: update upstream-status for patches perl: update upstream-status for patches python-pycurl: update upstream-status for patches python-pygobject: update upstream status for patches python-pyrex: update upstream-status for patches quilt: update upstream-status of patches tcl: update upstream-status for patches gnu-config: update upstream-status for patches gmp: update upstream-status for patches (From OE-Core rev: a62fa9b213b09bf48c48499d2e3c66a9ee306deb) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
--- gdb-6.1/sim/common/Makefile.in~ 2004-01-15 21:25:06.000000000 +0000
|
|
+++ gdb-6.1/sim/common/Makefile.in 2004-07-22 17:07:46.237809032 +0100
|
|
@@ -34,7 +34,7 @@
|
|
|
|
datadir = @datadir@
|
|
mandir = @mandir@
|
|
-man1dir = $(mandir)/man1
|
|
+man1dir = $(DESTDIR)$(mandir)/man1
|
|
infodir = @infodir@
|
|
includedir = @includedir@
|
|
|
|
|
|
--- gdb-6.1/sim/common/Make-common.in~sim-install.patch 2003-09-08 18:24:59.000000000 +0100
|
|
+++ gdb-6.1/sim/common/Make-common.in 2004-07-22 17:56:18.947423032 +0100
|
|
@@ -581,14 +581,14 @@
|
|
|
|
install-common: installdirs
|
|
n=`echo run | sed '$(program_transform_name)'`; \
|
|
- $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
|
|
+ $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
|
|
n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
|
|
- $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
|
|
- ( cd $(libdir) ; $(RANLIB) $$n )
|
|
+ $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
|
|
+ ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
|
|
|
|
installdirs:
|
|
- $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
|
|
- $(SHELL) $(srcdir)/../../mkinstalldirs $(libdir)
|
|
+ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
|
|
+ $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
|
|
|
|
check:
|
|
cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
|