Commit 6e7e9be94a4847e3dc1076d99966a17fe1019318

Authored by Jay Berkenbilt
1 parent ac4d4dab

retest windows install

git-svn-id: svn+q:///qpdf/trunk@865 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing 2 changed files with 3 additions and 4 deletions
copy_dlls
... ... @@ -19,7 +19,7 @@ while (<O>)
19 19 {
20 20 my $dll = $1;
21 21 $dll =~ tr/A-Z/a-z/;
22   - next if $dll =~ m/^(kernel32|msvcr)\.dll$/;
  22 + next if $dll =~ m/^(kernel32|msvcrt)\.dll$/;
23 23 $dlls{$dll} = 1;
24 24 }
25 25 }
... ... @@ -66,7 +66,6 @@ foreach my $f (@final)
66 66 print "Copying $f to $destdir\n";
67 67 system("cp -p $f $destdir") == 0 or
68 68 die "$whoami: copy $f to $destdir failed\n";
69   - print $f, "\n";
70 69 }
71 70  
72 71 sub get_manifest_dirs
... ...
make/mingw.mk
... ... @@ -79,5 +79,5 @@ INSTALL_DIR = install-mingw
79 79 STATIC_LIB_NAME = libqpdf.a
80 80 include make/installwin.mk
81 81 install: installwin
82   - strip $(INSTALL_DIR)/bin/*.exe
83   - strip $(INSTALL_DIR)/bin/*.dll
  82 + strip $(DEST)/bin/*.exe
  83 + strip $(DEST)/bin/*.dll
... ...