From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: GDB Patches , "Insight (GDB GUI)" Subject: [patch] fix insight links Date: Sat, 04 Mar 2000 00:48:00 -0000 Message-id: <38C0CDA8.AF268559@cygnus.com> X-SW-Source: 2000-q1/msg00121.html FYI, Alexandre Oliva I know I tested this, just not in an empty directory tree. Andrew Sat Mar 4 19:38:11 2000 Andrew Cagney By: Sat Mar 4 04:08:58 2000 Alexandre Oliva * Makefile.in (all-gdbtk): Fix $srcdir to ${srcdir}. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -c -r1.11 -r1.12 *** Makefile.in 2000/03/03 05:44:38 1.11 --- Makefile.in 2000/03/04 07:11:38 1.12 *************** *** 1261,1270 **** all-gdbtk: if test "$(LN_S)" = "ln -s" -a ! -d gdbtcl/images ; then \ ! echo linking $srcdir/gdbtk/library to gdbtcl ; \ ! $(LN_S) $srcdir/gdbtk/library gdbtcl ; \ else \ ! echo Warning: Unable to link $srcdir/gdbtk/library to gdbtcl. ; \ echo " " You will need to do a ; \ echo " " make install before you are able to run the GUI. ; \ fi --- 1261,1270 ---- all-gdbtk: if test "$(LN_S)" = "ln -s" -a ! -d gdbtcl/images ; then \ ! echo linking ${srcdir}/gdbtk/library to gdbtcl ; \ ! $(LN_S) ${srcdir}/gdbtk/library gdbtcl ; \ else \ ! echo Warning: Unable to link ${srcdir}/gdbtk/library to gdbtcl. ; \ echo " " You will need to do a ; \ echo " " make install before you are able to run the GUI. ; \ fi