Changeset 65 for trunk/src/gcc/config


Ignore:
Timestamp:
Apr 29, 2003, 10:15:15 PM (22 years ago)
Author:
bird
Message:

Don't mess with INSTALL_DOSREL. Set SHELL to absolute path if possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/config/mh-emx

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r64 r65  
    11# We don't want debugging info
    22# Accomplish this by overriding CFLAGS.
    3 CFLAGS=-s -O2
    4 CXXFLAGS=-s -O2
    5 LDFLAGS=-s -Zcrtdll -Zexe
     3CFLAGS   = -s -O2
     4CXXFLAGS = -s -O2
     5LDFLAGS  = -s -Zcrtdll -Zexe
    66
    77# Override SHELL variable (which is CMD.EXE by default)
     8# use absolute paths whenever possible.
     9ifdef UNIXROOT
     10SHELL=$(UNIXROOT)/bin/sh.exe
     11else
    812SHELL=sh
     13endif
    914
    1015# Skip installation
    11 INSTALL_DOSREL=true
     16# bird: true isn't a good value. It will by default point to dummy rule, so leave it.
     17# INSTALL_DOSREL=true
    1218
    1319# No need for RANLIB
Note: See TracChangeset for help on using the changeset viewer.