Changeset 807 in MondoRescue
- Timestamp:
- Sep 22, 2006, 10:56:58 PM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/distributions/debian/rules
r581 r807 26 26 dh_installdirs 27 27 # 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 ) 29 29 30 30 # Build architecture-independent files here. -
branches/stable/mondo/mondo/mondoarchive/main.c
r806 r807 283 283 log_msg(0, "Start date : %s", get_time()); 284 284 285 /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */285 /* make sure PATH environmental variable allows access to mkfs, fdisk, etc. */ 286 286 strncpy(tmp, getenv("PATH"), MAX_STR_LEN - 1); 287 287 tmp[MAX_STR_LEN - 1] = '\0'; … … 293 293 setenv("PATH", tmp, 1); 294 294 295 /* Add the ARCH environment variable for ia64 purposes */295 /* Add the ARCH environment variable for ia64 purposes */ 296 296 strncpy(tmp, get_architecture(), MAX_STR_LEN - 1); 297 297 tmp[MAX_STR_LEN - 1] = '\0'; … … 303 303 unlink(MONDO_LOGFILE); 304 304 305 /* Configure the bkpinfo structure, global file paths, etc. */305 /* Configure the bkpinfo structure, global file paths, etc. */ 306 306 g_main_pid = getpid(); 307 307 log_msg(9, "This");
Note:
See TracChangeset
for help on using the changeset viewer.