Changeset 807 in MondoRescue for branches


Ignore:
Timestamp:
Sep 22, 2006, 10:56:58 PM (18 years ago)
Author:
Bruno Cornec
Message:

Fix a bug in Debian build system for mindi (variables needs to be system like not build env like) (reported by Martin A. Brooks <mbrooks_at_fotango.com>)

Location:
branches/stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/distributions/debian/rules

    r581 r807  
    2626    dh_installdirs
    2727    # Build the installation tree:
    28     ( export PREFIX=$(CURDIR)/debian/$(PACKAGE_NAME)/usr && export CONFDIR=$(CURDIR)/debian/$(PACKAGE_NAME)/etc && ./install.sh )
     28    ( export RPMBUILDMINDI=true && export PREFIX=$(CURDIR)/debian/$(PACKAGE_NAME)/usr && export CONFDIR=$(CURDIR)/debian/$(PACKAGE_NAME)/etc && ./install.sh )
    2929
    3030# Build architecture-independent files here.
  • branches/stable/mondo/mondo/mondoarchive/main.c

    r806 r807  
    283283    log_msg(0, "Start date : %s", get_time());
    284284
    285 /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
     285    /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */
    286286    strncpy(tmp, getenv("PATH"), MAX_STR_LEN - 1);
    287287    tmp[MAX_STR_LEN - 1] = '\0';
     
    293293    setenv("PATH", tmp, 1);
    294294
    295 /* Add the ARCH environment variable for ia64 purposes */
     295    /* Add the ARCH environment variable for ia64 purposes */
    296296    strncpy(tmp, get_architecture(), MAX_STR_LEN - 1);
    297297    tmp[MAX_STR_LEN - 1] = '\0';
     
    303303    unlink(MONDO_LOGFILE);
    304304
    305 /* Configure the bkpinfo structure, global file paths, etc. */
     305    /* Configure the bkpinfo structure, global file paths, etc. */
    306306    g_main_pid = getpid();
    307307    log_msg(9, "This");
Note: See TracChangeset for help on using the changeset viewer.