Elementary mistake.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 14 Nov 2008 11:26:10 +0000 (11:26 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 14 Nov 2008 11:26:10 +0000 (11:26 +0000)
flexdll/flexlink.exe
flexdll/mingw32-flexdll.spec
ocaml/mingw32-ocaml.spec

index 41724cd..83dacfc 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh -
 
 FLEXDIR=@libdir@/flexdll
-@libdir@/flexdll/flexlink.exe
\ No newline at end of file
+@libdir@/flexdll/flexlink.exe "$@"
\ No newline at end of file
index c30ba18..c50630f 100644 (file)
@@ -11,7 +11,7 @@
 
 Name:           mingw32-flexdll
 Version:        0.11
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        FlexDLL Windows DLL plugin API which is like dlopen
 
 License:        zlib
@@ -124,5 +124,5 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
-* Fri Nov 14 2008 Richard W.M. Jones <rjones@redhat.com> - 0.11-1
+* Fri Nov 14 2008 Richard W.M. Jones <rjones@redhat.com> - 0.11-2
 - Initial RPM release.
index 4dfc76b..08c18bb 100644 (file)
@@ -47,9 +47,18 @@ CFLAGS="$RPM_OPT_FLAGS" \
   -libdir %{_libdir}/ocaml \
   -x11lib %{_libdir} \
   -x11include %{_includedir} \
-  -mandir %{_mandir}/man1
+  -mandir %{_mandir}/man1 \
+  -cc %{_mingw32_cc} \
+  -as %{_mingw32_as}
 
+# ./configure creates the following files:
+#     config/Makefile - containing mainly paths and names of build tools
+#     config/m.h - containing the machine description
+#     config/s.h - containing the environment / API description
+
+# Overwrite the generated m.h & s.h with the ones from Windows NT.
 cp config/m-nt.h config/m.h
+cp config/s-nt.h config/s.h
 
 make world bootstrap opt opt.opt
 
@@ -74,5 +83,5 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
-* Fri Oct 24 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0+beta1-1
+* Fri Nov 14 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0+beta1-1
 - Initial RPM release.