mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Correct tar command
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@7536 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bda5c59fb2
commit
118e46f214
4 changed files with 158 additions and 149 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-09-18 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.in: Check for mingw also
|
||||
* bundle.make (internal-bundle-install): Correct tar command.
|
||||
|
||||
2000-09-14 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.in: Check for iconv support.
|
||||
|
|
|
@ -212,7 +212,7 @@ internal-bundle-install:: $(BUNDLE_INSTALL_DIR)
|
|||
fi; \
|
||||
fi; \
|
||||
rm -rf $(BUNDLE_INSTALL_DIR)/$(BUNDLE_DIR_NAME)
|
||||
$(TAR) ch --exclude=CVS --to-stdout $(BUNDLE_DIR_NAME) | (cd $(BUNDLE_INSTALL_DIR); $(TAR) xf -)
|
||||
$(TAR) cf -X CVS - $(BUNDLE_DIR_NAME) | (cd $(BUNDLE_INSTALL_DIR); $(TAR) xf -)
|
||||
|
||||
$(BUNDLE_DIR_NAME)/Resources $(BUNDLE_INSTALL_DIR)::
|
||||
@$(MKDIRS) $@
|
||||
|
|
|
@ -84,6 +84,8 @@ if test "$ac_cv_library_combo" = ""; then
|
|||
ac_cv_library_combo=gnu-gnu-gnu-win32
|
||||
elif test $host_os = mingw32; then
|
||||
ac_cv_library_combo=gnu-gnu-gnu-win32
|
||||
elif test $host_os = mingw; then
|
||||
ac_cv_library_combo=gnu-gnu-gnu-win32
|
||||
else
|
||||
ac_cv_library_combo=gnu-gnu-gnu-xgps
|
||||
fi
|
||||
|
@ -93,7 +95,7 @@ AC_SUBST(ac_cv_library_combo)
|
|||
#--------------------------------------------------------------------
|
||||
# Determine the host, build, and target systems
|
||||
#--------------------------------------------------------------------
|
||||
if test $host_os = mingw32 ; then
|
||||
if test $host_os = mingw32 -o $host_os = mingw; then
|
||||
echo "hosted on mingw32 .."
|
||||
export MINGW32=1
|
||||
export SHELL=zsh
|
||||
|
|
Loading…
Reference in a new issue