Changeset 1933


Ignore:
Timestamp:
Oct 26, 2010, 7:51:50 AM (14 years ago)
Author:
gah
Message:
 
Location:
branches/blt4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/examples/app-fermi/wrapper/cee/fermi.c

    r557 r1933  
    7373    err = system("octave --silent fermi.m < indeck");
    7474
    75     if (err == 1) {
     75    if (err != 0) {
    7676        fprintf(stderr,"%s: calling octave science program failed",prog);
    7777        exit(err);
     
    9696    fp = fopen("out.dat","r");
    9797    if (fp == NULL) {
    98         fprintf(stderr,"%s: Error while writing to out.dat",prog);
     98        fprintf(stderr,"%s: Error while writing to out.dat", prog);
    9999        exit(1);
    100100    }
  • branches/blt4/gui/scripts/bugreport.tcl

    r1923 r1933  
    432432        type $settings(type) \
    433433    ]
    434    
    435434    set url [Rappture::Tool::resources -huburl]
     435    if { $url == "" } {
     436        set url "http://hubzero.org"
     437    }
    436438    if {[string index $url end] == "/"} {
    437439        append url "index.php"
  • branches/blt4/packages/vizservers/nanovis/Makefile.in

    r1898 r1933  
    3838# might also need -lavutil
    3939GL_INC_SPEC     = -I/usr/include/GL
    40 GL_LIB_SPEC     = -lGL -lglut -lGLEW
     40GL_LIB_SPEC     = -lGL -lglut -lGLEW -lGLU
    4141IMG_DIR         = ./imgLoaders
    4242IMG_INC_SPEC    = -I$(srcdir)/$(IMG_DIR)
Note: See TracChangeset for help on using the changeset viewer.