mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
* GNUmakefile.in (uninstall:): Remove print_unique_pathlist.sh,
filesystem.sh, filesystem.csh and gnustep-config. Remove GNUSTEP_TARGET_LDIR. Reorder removed directories according to reverse order of installation. Only remove existing directories. Remove obsolete comment. * common.make (TRANSFORM_PATHS_SCRIPT): Remove obsolete variable. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24651 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
418b2389d5
commit
05773ddf43
3 changed files with 25 additions and 11 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2007-02-19 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* GNUmakefile.in (uninstall:): Remove print_unique_pathlist.sh,
|
||||
filesystem.sh, filesystem.csh and gnustep-config. Remove
|
||||
GNUSTEP_TARGET_LDIR. Reorder removed directories according
|
||||
to reverse order of installation. Only remove existing directories.
|
||||
Remove obsolete comment.
|
||||
|
||||
* common.make (TRANSFORM_PATHS_SCRIPT): Remove obsolete variable.
|
||||
|
||||
2007-02-19 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Documentation/install.texi: Rewritten large parts to describe
|
||||
|
|
|
@ -139,7 +139,8 @@ install: generated-files
|
|||
$(EC)(echo "Installing gnustep-make support software")
|
||||
$(EC)(for f in config.guess config.sub install-sh mkinstalldirs \
|
||||
clean_cpu.sh clean_os.sh \
|
||||
clean_vendor.sh cpu.sh os.sh vendor.sh print_unique_pathlist.sh \
|
||||
clean_vendor.sh cpu.sh os.sh vendor.sh \
|
||||
print_unique_pathlist.sh \
|
||||
relative_path.sh strip_makefiles.sh; do \
|
||||
$(INSTALL_PROGRAM) -m 755 $(srcdir)/$$f $(makedir); \
|
||||
done)
|
||||
|
@ -190,7 +191,9 @@ uninstall:
|
|||
clean_cpu.sh clean_os.sh \
|
||||
clean_vendor.sh cpu.sh ld_lib_path.sh os.sh \
|
||||
vendor.sh \
|
||||
print_unique_pathlist.sh \
|
||||
ld_lib_path.csh fixpath.sh \
|
||||
filesystem.sh filesystem.csh \
|
||||
GNUstep.sh GNUstep.csh GNUstep-reset.sh \
|
||||
relative_path.sh strip_makefiles.sh; do \
|
||||
rm -f $(makedir)/$$f; \
|
||||
|
@ -198,6 +201,7 @@ uninstall:
|
|||
rm -f $(tooldir)/openapp; \
|
||||
rm -f $(tooldir)/debugapp; \
|
||||
rm -f $(tooldir)/opentool; \
|
||||
rm -f $(tooldir)/gnustep-config; \
|
||||
for f in $(MAKE_FILES); do \
|
||||
rm -f $(makedir)/$$f; \
|
||||
done
|
||||
|
@ -217,17 +221,18 @@ uninstall:
|
|||
rm -f $(GNUSTEP_SYSTEM_ROOT)/share/config.site
|
||||
rm -f $(makedir)/config-noarch.make
|
||||
rm -f $(makedir)/$(GNUSTEP_TARGET_LDIR)/config.make
|
||||
-for f in $(makedir)/$(GNUSTEP_TARGET_CPU) \
|
||||
$(makedir)/$(GNUSTEP_TARGET_DIR) \
|
||||
$(makedir)/Additional \
|
||||
$(makedir)/Auxiliary \
|
||||
$(makedir)/Master \
|
||||
-for f in $(makedir)/Instance/Documentation \
|
||||
$(makedir)/Instance/Shared \
|
||||
$(makedir)/Instance/Documentation \
|
||||
$(makedir)/Instance; do \
|
||||
rmdir $$f; \
|
||||
$(makedir)/Instance \
|
||||
$(makedir)/Master \
|
||||
$(makedir)/Auxiliary \
|
||||
$(makedir)/Additional \
|
||||
$(makedir)/$(GNUSTEP_TARGET_LDIR) \
|
||||
$(makedir)/$(GNUSTEP_TARGET_DIR) \
|
||||
$(makedir)/$(GNUSTEP_TARGET_CPU) \
|
||||
$(makedir); do \
|
||||
test -d $$f && rmdir $$f; \
|
||||
done
|
||||
# To really uninstall all of GNUstep, a 'rm -Rf ${GNUSTEP_ROOT}' should do.
|
||||
|
||||
clean:
|
||||
rm -f *~ Master/*~ Instance/*~ Instance/Shared/*~
|
||||
|
|
|
@ -51,7 +51,6 @@ CONFIG_OS_SCRIPT = $(GNUSTEP_MAKEFILES)/os.sh
|
|||
CLEAN_CPU_SCRIPT = $(GNUSTEP_MAKEFILES)/clean_cpu.sh
|
||||
CLEAN_VENDOR_SCRIPT = $(GNUSTEP_MAKEFILES)/clean_vendor.sh
|
||||
CLEAN_OS_SCRIPT = $(GNUSTEP_MAKEFILES)/clean_os.sh
|
||||
TRANSFORM_PATHS_SCRIPT = $(GNUSTEP_MAKEFILES)/transform_paths.sh
|
||||
REL_PATH_SCRIPT = $(GNUSTEP_MAKEFILES)/relative_path.sh
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue