mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Renamed gnustep-config.sh to gnustep-config, and tidied up rules to build it
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24506 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
afc735abe6
commit
67a6d44da6
5 changed files with 22 additions and 5 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2007-02-12 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* GNUmakefile.in (distclean): Remove gnustep-config.
|
||||
(generated-files): Added gnustep-config.
|
||||
(gnustep-config): New rule to rebuild it when changed.
|
||||
|
||||
2007-02-12 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* gnustep-config.sh.in: Removed.
|
||||
* gnustep-config.in: Added.
|
||||
* GNUmakefile.in: Install gnustep-config, not gnustep-config.sh.
|
||||
* configure.ac: Create gnustep-config, not gnustep-config.sh.
|
||||
* configure: Regenerated
|
||||
|
||||
2007-02-11 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* gnustep-config.sh.in (GNUSTEP_MAKEFILES): If we are asked for
|
||||
|
|
|
@ -253,7 +253,7 @@ distclean: clean
|
|||
rm -f GNUmakefile config-noarch.make config.make config.h
|
||||
rm -f config.cache config.log config.status
|
||||
rm -f openapp opentool executable.template
|
||||
rm -f GNUstep.sh GNUstep.csh fixpath.sh
|
||||
rm -f GNUstep.sh GNUstep.csh fixpath.sh gnustep-config
|
||||
rm -f gnustep-make.spec GNUsteprc
|
||||
rm -f config-precomp-test.log
|
||||
|
||||
|
@ -315,7 +315,7 @@ rpm: test-RPM_TOPDIR dist
|
|||
fi; \
|
||||
$${rpmbuild} -ba gnustep-make.spec
|
||||
|
||||
generated-files: GNUmakefile GNUstep.sh GNUstep.csh fixpath.sh config-noarch.make config.make openapp opentool gnustep-make.spec executable.template
|
||||
generated-files: GNUmakefile GNUstep.sh GNUstep.csh fixpath.sh config-noarch.make config.make openapp opentool gnustep-make.spec executable.template gnustep-config
|
||||
|
||||
GNUmakefile: GNUmakefile.in config.status
|
||||
$(SHELL) config.status
|
||||
|
@ -346,3 +346,6 @@ gnustep-make.spec: gnustep-make.spec.in Version
|
|||
|
||||
executable.template: executable.template.in
|
||||
$(SHELL) config.status
|
||||
|
||||
gnustep-config: gnustep-config.in
|
||||
$(SHELL) config.status
|
||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -4498,7 +4498,7 @@ clean_target_vendor=`$srcdir/clean_cpu.sh $target_vendor`
|
|||
#--------------------------------------------------------------------
|
||||
# Produce the output files
|
||||
#--------------------------------------------------------------------
|
||||
ac_config_files="$ac_config_files config-noarch.make config.make openapp opentool executable.template GNUmakefile GNUstep.conf GNUstep.sh GNUstep.csh fixpath.sh gnustep-make.spec gnustep-config.sh"
|
||||
ac_config_files="$ac_config_files config-noarch.make config.make openapp opentool executable.template GNUmakefile GNUstep.conf GNUstep.sh GNUstep.csh fixpath.sh gnustep-make.spec gnustep-config"
|
||||
|
||||
ac_config_commands="$ac_config_commands default"
|
||||
|
||||
|
@ -5074,7 +5074,7 @@ do
|
|||
"GNUstep.csh" ) CONFIG_FILES="$CONFIG_FILES GNUstep.csh" ;;
|
||||
"fixpath.sh" ) CONFIG_FILES="$CONFIG_FILES fixpath.sh" ;;
|
||||
"gnustep-make.spec" ) CONFIG_FILES="$CONFIG_FILES gnustep-make.spec" ;;
|
||||
"gnustep-config.sh" ) CONFIG_FILES="$CONFIG_FILES gnustep-config.sh" ;;
|
||||
"gnustep-config" ) CONFIG_FILES="$CONFIG_FILES gnustep-config" ;;
|
||||
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
|
||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||
|
|
|
@ -1060,7 +1060,7 @@ AC_SUBST(target)
|
|||
#--------------------------------------------------------------------
|
||||
AC_CONFIG_FILES([config-noarch.make config.make openapp opentool
|
||||
executable.template GNUmakefile GNUstep.conf GNUstep.sh GNUstep.csh fixpath.sh
|
||||
gnustep-make.spec gnustep-config.sh])
|
||||
gnustep-make.spec gnustep-config])
|
||||
AC_CONFIG_COMMANDS([default],
|
||||
[[chmod a+x openapp opentool fixpath.sh executable.template]],
|
||||
[[]])
|
||||
|
|
Loading…
Reference in a new issue