gdb/
2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (FLAGS_TO_PASS): Add DESTDIR. (install-only): Support DESTDIR. (uninstall): Likewise. (install-gdbtk): Likewise. gdb/doc/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-info): Support DESTDIR. (install-html): Likewise. gdb/gdbserver/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-only): Create dest dir. Support DESTDIR. (uninstall): Support DESTDIR. mmalloc/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-info): Create dest dir. Support DESTDIR. (install): Likewise.
This commit is contained in:
parent
c04898f807
commit
c938e9b01d
8 changed files with 43 additions and 15 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* Makefile.in (install-only): Create dest dir. Support DESTDIR.
|
||||
(uninstall): Support DESTDIR.
|
||||
|
||||
Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
|
||||
|
||||
* configure.srv: Add xscale*linux copy of arm*linux entry.
|
||||
|
|
|
@ -151,13 +151,15 @@ install: all install-only
|
|||
install-only:
|
||||
n=`echo gdbserver | sed '$(program_transform_name)'`; \
|
||||
if [ x$$n = x ]; then n=gdbserver; else true; fi; \
|
||||
$(INSTALL_PROGRAM) gdbserver $(bindir)/$$n; \
|
||||
$(INSTALL_DATA) $(srcdir)/gdbserver.1 $(man1dir)/$$n.1
|
||||
$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir); \
|
||||
$(INSTALL_PROGRAM) gdbserver $(DESTDIR)$(bindir)/$$n; \
|
||||
$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(man1dir); \
|
||||
$(INSTALL_DATA) $(srcdir)/gdbserver.1 $(DESTDIR)$(man1dir)/$$n.1
|
||||
|
||||
uninstall: force
|
||||
n=`echo gdbserver | sed '$(program_transform_name)'`; \
|
||||
if [ x$$n = x ]; then n=gdbserver; else true; fi; \
|
||||
rm -f $(bindir)/$$n $(man1dir)/$$n.1
|
||||
rm -f $(bindir)/$$n $(DESTDIR)$(man1dir)/$$n.1
|
||||
|
||||
installcheck:
|
||||
check:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue