Skip to content

Commit

Permalink
Fall back to gjar if jar is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
cartershanklin committed Dec 12, 2013
1 parent 63dbc00 commit 6fd3559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tpcds-gen/Makefile
Expand Up @@ -12,7 +12,7 @@ tpcds_kit.zip:
curl --output tpcds_kit.zip http://www.tpc.org/tpcds/dsgen/dsgen-download-files.asp?download_key=NaN

target/lib/dsdgen.jar: target/tools/dsdgen
cd target/; mkdir -p lib/; jar cvf lib/dsdgen.jar tools/
cd target/; mkdir -p lib/; ( jar cvf lib/dsdgen.jar tools/ || gjar cvf lib/dsdgen.jar tools/ )

target/tools/dsdgen: target/tpcds_kit.zip
test -d target/tools/ || (cd target; unzip tpcds_kit.zip; cd tools; cat ../../*.patch | patch -p0 )
Expand Down

0 comments on commit 6fd3559

Please sign in to comment.