Changeset 864:ce3de1d58b8d in roaraudio


Ignore:
Timestamp:
09/30/08 13:56:33 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added options to set $PREFIX*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r863 r864  
    6969   echo '--no-LIB                    - disable LIB' 
    7070   echo '--runtime-detect            - do as much as posible auto detecting on runtime (for distributors)' 
     71   echo '--prefix DIR' 
     72   echo '--prefix-bin DIR' 
     73   echo '--prefix-lib DIR' 
     74   echo '--prefix-inc DIR' 
     75   echo '--prefix-man DIR' 
    7176   exit 0; 
    7277  ;; 
     
    9398  ;; 
    9499  '--runtime-detect') 
    95   RUNTIME_DETECT=true 
     100   RUNTIME_DETECT=true 
     101  ;; 
     102  '--prefix') 
     103   PREFIX="$2" 
     104   shift; 
     105  ;; 
     106  '--prefix-bin') 
     107   PREFIX_BIN="$2" 
     108   shift; 
     109  ;; 
     110  '--prefix-lib') 
     111   PREFIX_LIB="$2" 
     112   shift; 
     113  ;; 
     114  '--prefix-inc') 
     115   PREFIX_INC="$2" 
     116   shift; 
     117  ;; 
     118  '--prefix-man') 
     119   PREFIX_MAN="$2" 
     120   shift; 
    96121  ;; 
    97122 esac; 
Note: See TracChangeset for help on using the changeset viewer.