Skip to content
Snippets Groups Projects
Commit 525db5b2 authored by jdh8d's avatar jdh8d
Browse files

Former-commit-id: 3b40e138
parent 4d44602c
No related branches found
No related tags found
No related merge requests found
...@@ -33,11 +33,13 @@ centos_files/nss-3.28.4-1.0.el7_3.i686.rpm -text ...@@ -33,11 +33,13 @@ centos_files/nss-3.28.4-1.0.el7_3.i686.rpm -text
centos_files/nss-softokn-3.16.2.3-14.4.el7.i686.rpm -text centos_files/nss-softokn-3.16.2.3-14.4.el7.i686.rpm -text
centos_files/nss-softokn-freebl-3.16.2.3-14.4.el7.i686.rpm -text centos_files/nss-softokn-freebl-3.16.2.3-14.4.el7.i686.rpm -text
centos_files/nss-util-3.28.4-1.0.el7_3.i686.rpm -text centos_files/nss-util-3.28.4-1.0.el7_3.i686.rpm -text
centos_files/oniguruma-5.9.5-3.el7.x86_64.rpm -text
centos_files/pam-1.1.8-18.el7.i686.rpm -text centos_files/pam-1.1.8-18.el7.i686.rpm -text
centos_files/pam-1.1.8-18.el7.x86_64.rpm -text svneol=unset#application/x-rpm centos_files/pam-1.1.8-18.el7.x86_64.rpm -text svneol=unset#application/x-rpm
centos_files/patch-2.7.1-8.el7.x86_64.rpm -text svneol=unset#application/x-rpm centos_files/patch-2.7.1-8.el7.x86_64.rpm -text svneol=unset#application/x-rpm
centos_files/pcre-8.32-15.el7_2.1.i686.rpm -text centos_files/pcre-8.32-15.el7_2.1.i686.rpm -text
centos_files/pcre-8.32-15.el7_2.1.x86_64.rpm -text svneol=unset#application/x-rpm centos_files/pcre-8.32-15.el7_2.1.x86_64.rpm -text svneol=unset#application/x-rpm
centos_files/perl-Data-Dumper-2.145-3.el7.x86_64.rpm -text
centos_files/perl-JSON-PP-2.27202-2.el7.noarch.rpm -text centos_files/perl-JSON-PP-2.27202-2.el7.noarch.rpm -text
centos_files/postgresql-9.2.18-1.el7.x86_64.rpm -text svneol=unset#application/x-rpm centos_files/postgresql-9.2.18-1.el7.x86_64.rpm -text svneol=unset#application/x-rpm
centos_files/postgresql-contrib-9.2.18-1.el7.x86_64.rpm -text svneol=unset#application/x-rpm centos_files/postgresql-contrib-9.2.18-1.el7.x86_64.rpm -text svneol=unset#application/x-rpm
......
...@@ -104,10 +104,12 @@ fi ...@@ -104,10 +104,12 @@ fi
cd $PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/
scons -j 3|| exit scons -j 3|| exit
if [ -e zipr ] ; then if [[ -e $PEASOUP_UMBRELLA_DIR/zipr ]] && [[ -e $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin ]] ; then
cd $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin/
scons -j 3|| exit scons -j 3|| exit
fi
if [[ -e $PEASOUP_UMBRELLA_DIR/zipr ]] && [[ -e $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin ]] ; then
cd $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin/
scons -j 3|| exit scons -j 3|| exit
fi fi
......
File added
File added
...@@ -38,20 +38,22 @@ if [ -d $ZIPR_SCFI_PLUGIN ]; then ...@@ -38,20 +38,22 @@ if [ -d $ZIPR_SCFI_PLUGIN ]; then
scons -c || exit scons -c || exit
fi fi
if [ -d $ZIPR_CALLBACKS ]; then if [[ -d $ZIPR_CALLBACKS ]] && [[ -e $ZIPR_CALLBACKS/Makefile ]] ; then
cd $ZIPR_CALLBACKS cd $ZIPR_CALLBACKS
make clean make clean
fi fi
if [ -d "$PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/" ]; then if [[ -d "$PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/" ]]; then
cd $PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_large_only_plugin/
scons -c || exit scons -c || exit
fi fi
if [ -f zipr ]; then if [[ -e $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin ]]; then
cd $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_relax_plugin/
scons -c || exit scons -c || exit
fi
if [[ -e $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin ]]; then
cd $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin/ cd $PEASOUP_UMBRELLA_DIR/zipr_trace_plugin/
scons -c || exit scons -c || exit
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment