diff options
Diffstat (limited to 'sci-chemistry/procheck/files/3.5.4-ldflags.patch')
-rw-r--r-- | sci-chemistry/procheck/files/3.5.4-ldflags.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sci-chemistry/procheck/files/3.5.4-ldflags.patch b/sci-chemistry/procheck/files/3.5.4-ldflags.patch new file mode 100644 index 000000000000..453aebe3211f --- /dev/null +++ b/sci-chemistry/procheck/files/3.5.4-ldflags.patch @@ -0,0 +1,49 @@ +diff --git a/Makefile b/Makefile +index c5bb58f..0394b0a 100644 +--- a/Makefile ++++ b/Makefile +@@ -35,31 +35,31 @@ distrib : + # Individual executables + # ---------------------- + anglen : anglen.o +- $(F77) $(FOPTS) -o $@ anglen.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ anglen.o + clean : clean.o +- $(F77) $(FOPTS) -o $@ clean.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ clean.o + rmsdev : rmsdev.o +- $(F77) $(FOPTS) -o $@ rmsdev.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ rmsdev.o + secstr : secstr.o +- $(F77) $(FOPTS) -o $@ secstr.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ secstr.o + gfac2pdb : gfac2pdb.o ps.o +- $(F77) $(FOPTS) -o $@ gfac2pdb.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ gfac2pdb.o ps.o + pplot : pplot.o ps.o +- $(F77) $(FOPTS) -o $@ pplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ pplot.o ps.o + bplot : bplot.o ps.o +- $(F77) $(FOPTS) -o $@ bplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ bplot.o ps.o + tplot : tplot.o ps.o +- $(F77) $(FOPTS) -o $@ tplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ tplot.o ps.o + mplot : mplot.o ps.o +- $(F77) $(FOPTS) -o $@ mplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ mplot.o ps.o + vplot : vplot.o ps.o +- $(F77) $(FOPTS) -o $@ vplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ vplot.o ps.o + viol2pdb : viol2pdb.o ps.o +- $(F77) $(FOPTS) -o $@ viol2pdb.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ viol2pdb.o ps.o + wirplot : wirplot.o ps.o +- $(F77) $(FOPTS) -o $@ wirplot.o ps.o ++ $(F77) $(FOPTS) $(LDFLAGS) -o $@ wirplot.o ps.o + nb : nb.c +- $(CC) $(COPTS) -o nb nb.c $(CLIBS) ++ $(CC) $(COPTS) $(LDFLAGS) -o nb nb.c $(CLIBS) + + # Individual rules for FORTRAN files with .inc files + # -------------------------------------------------- |