index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | contrib/.gitignore | 9 | ||||
-rw-r--r-- | contrib/Makefile.am | 11 | ||||
-rw-r--r-- | contrib/PKGBUILD.vim (renamed from contrib/PKGBUILD.vim.in) | 0 | ||||
-rwxr-xr-x | contrib/bacman.in | 2 | ||||
-rwxr-xr-x | contrib/pacdiff.in | 2 | ||||
-rwxr-xr-x | contrib/pacscripts.in | 2 | ||||
-rwxr-xr-x | contrib/pactree.in | 2 | ||||
-rw-r--r-- | contrib/vimprojects (renamed from contrib/vimprojects.in) | 0 | ||||
-rwxr-xr-x | contrib/wget-xdelta.sh.in | 2 | ||||
-rw-r--r-- | scripts/Makefile.am | 2 | ||||
-rw-r--r-- | scripts/makepkg.sh.in | 2 | ||||
-rw-r--r-- | scripts/pacman-optimize.sh.in | 2 | ||||
-rw-r--r-- | scripts/pkgdelta.sh.in | 2 | ||||
-rw-r--r-- | scripts/rankmirrors.sh.in | 2 | ||||
-rw-r--r-- | scripts/repo-add.sh.in | 2 |
diff --git a/configure.ac b/configure.ac index 115aeb15..6f601f4b 100644 --- a/configure.ac +++ b/configure.ac @@ -127,7 +127,7 @@ AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_LIBTOOL AC_CHECK_PROGS([PYTHON], [python2.7 python2.6 python2.5 python2 python], [false]) -AC_CHECK_PROGS([BASH], [bash bash4 bash3], [false]) +AC_PATH_PROGS([BASH_SHELL], [bash bash4 bash3], [false]) # find installed gettext AM_GNU_GETTEXT([external]) diff --git a/contrib/.gitignore b/contrib/.gitignore new file mode 100644 index 00000000..91044765 --- /dev/null +++ b/contrib/.gitignore @@ -0,0 +1,9 @@ +bacman +bash_completion +pacdiff +paclist +pacscripts +pacsearch +pactree +wget-xdelta.sh +zsh_completion diff --git a/contrib/Makefile.am b/contrib/Makefile.am index dd0b767c..55366b47 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -1,5 +1,4 @@ OURFILES = \ - PKGBUILD.vim \ bacman \ bash_completion \ pacdiff \ @@ -7,12 +6,11 @@ OURFILES = \ pacscripts \ pacsearch \ pactree \ - vimprojects \ wget-xdelta.sh \ zsh_completion EXTRA_DIST = \ - PKGBUILD.vim.in \ + PKGBUILD.vim \ bacman.in \ bash_completion.in \ pacdiff.in \ @@ -20,7 +18,7 @@ EXTRA_DIST = \ pacscripts.in \ pacsearch.in \ pactree.in \ - vimprojects.in \ + vimprojects \ wget-xdelta.sh.in \ zsh_completion.in \ README @@ -31,12 +29,13 @@ MOSTLYCLEANFILES = $(OURFILES) *.tmp edit = sed \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@localstatedir[@]|$(localstatedir)|g' \ - -e 's|@BASH[@]|$(BASH)|g' + -e 's|@BASH_SHELL[@]|$(BASH_SHELL)|g' $(OURFILES): Makefile + @echo ' ' GEN $@; @rm -f $@ $@.tmp @cp -a $@.in $@.tmp - $(edit) $@.in >$@.tmp + @$(edit) $@.in >$@.tmp @mv $@.tmp $@ all-am: $(OURFILES) diff --git a/contrib/PKGBUILD.vim.in b/contrib/PKGBUILD.vim index 8b40ed7c..8b40ed7c 100644 --- a/contrib/PKGBUILD.vim.in +++ b/contrib/PKGBUILD.vim diff --git a/contrib/bacman.in b/contrib/bacman.in index 2a93f8be..991acb00 100755 --- a/contrib/bacman.in +++ b/contrib/bacman.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # bacman: recreate a package from a running system # This script rebuilds an already installed package using metadata diff --git a/contrib/pacdiff.in b/contrib/pacdiff.in index 716333a0..ac4ce893 100755 --- a/contrib/pacdiff.in +++ b/contrib/pacdiff.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # pacdiff : a simple pacnew/pacorig/pacsave updater # # Copyright (c) 2007 Aaron Griffin <aaronmgriffin@gmail.com> diff --git a/contrib/pacscripts.in b/contrib/pacscripts.in index 123c79df..d3664091 100755 --- a/contrib/pacscripts.in +++ b/contrib/pacscripts.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # pacscripts : tries to print out the {pre,post}_{install,remove,upgrade} # scripts of a given package diff --git a/contrib/pactree.in b/contrib/pactree.in index 29c6af6c..b43005a8 100755 --- a/contrib/pactree.in +++ b/contrib/pactree.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # pactree : a simple dependency tree viewer # # Copyright (C) 2008 Carlo "carlocci" Bersani <carlocci@gmail.com> diff --git a/contrib/vimprojects.in b/contrib/vimprojects index e9adfdf1..e9adfdf1 100644 --- a/contrib/vimprojects.in +++ b/contrib/vimprojects diff --git a/contrib/wget-xdelta.sh.in b/contrib/wget-xdelta.sh.in index caf0171e..f2ac1c87 100755 --- a/contrib/wget-xdelta.sh.in +++ b/contrib/wget-xdelta.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ if [ -r "@sysconfdir@/makepkg.conf" ]; then source @sysconfdir@/makepkg.conf diff --git a/scripts/Makefile.am b/scripts/Makefile.am index b9e3038f..78deb0b9 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -35,7 +35,7 @@ edit = sed \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@localstatedir[@]|$(localstatedir)|g' \ -e 's|@prefix[@]|$(prefix)|g' \ - -e 's|@BASH[@]|$(BASH)|g' \ + -e 's|@BASH_SHELL[@]|$(BASH_SHELL)|g' \ -e 's|@PACKAGE_VERSION[@]|$(REAL_PACKAGE_VERSION)|g' \ -e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \ -e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \ diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index afedc314..9220032c 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ -e +#!@BASH_SHELL@ -e # # makepkg - make packages compatible for use with pacman # @configure_input@ diff --git a/scripts/pacman-optimize.sh.in b/scripts/pacman-optimize.sh.in index eb6691c8..f4642abf 100644 --- a/scripts/pacman-optimize.sh.in +++ b/scripts/pacman-optimize.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # pacman-optimize # @configure_input@ diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index d45678d9..6bc3f5da 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pkgdelta.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # pkgdelta - create delta files for use with pacman and repo-add # @configure_input@ diff --git a/scripts/rankmirrors.sh.in b/scripts/rankmirrors.sh.in index 3851b771..64d5a73c 100644 --- a/scripts/rankmirrors.sh.in +++ b/scripts/rankmirrors.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # rankmirrors - read a list of mirrors from a file and rank them by speed # @configure_input@ diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index 9bc70696..d3e3bc82 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -1,4 +1,4 @@ -#!@BASH@ +#!@BASH_SHELL@ # # repo-add - add a package to a given repo database file # repo-remove - remove a package entry from a given repo database file |