changeset 51:b786709ce13f

bugfix for PDcurses (by Rocco Rutte)
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 03 Jul 2007 11:25:23 +0200
parents afebdcaf1428
children 5e31c0c15313
files build_mingw_cross_env.sh
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/build_mingw_cross_env.sh	Tue Jul 03 11:16:14 2007 +0200
+++ b/build_mingw_cross_env.sh	Tue Jul 03 11:25:23 2007 +0200
@@ -536,10 +536,12 @@
         WIDE=Y \
         UTF8=Y \
         libs
+    $TARGET-ranlib pdcurses.a panel.a
     install -d "$PREFIX/$TARGET/include/"
     install -m644 curses.h panel.h term.h "$PREFIX/$TARGET/include/"
     install -d "$PREFIX/$TARGET/lib/"
-    install -m644 pdcurses.a panel.a "$PREFIX/$TARGET/lib/"
+    install -m644 pdcurses.a "$PREFIX/$TARGET/lib/libpdcurses.a"
+    install -m644 panel.a    "$PREFIX/$TARGET/lib/libpanel.a"
     cd "$SOURCE"
     rm -rfv "pdcurs$VERSION_pdcurses"
     ;;