Skip to content

Commit

Permalink
Fix release builds for package target
Browse files Browse the repository at this point in the history
  • Loading branch information
kaa-ching committed May 23, 2016
1 parent 04b5dd9 commit c986763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ distclean:

package:
mkdir -p ${BUILDDIR}
cd ${BUILDDIR} && cmake -DBUILDTYPE=Release ..
cd ${BUILDDIR} && cmake -DCMAKE_BUILD_TYPE=Release ..
cd ${BUILDDIR} && cpack -G TGZ
cd ${BUILDDIR} && cpack -G STGZ
cd ${BUILDDIR} && cmake -DRPM=1 -DBUILDTYPE=Release ..
cd ${BUILDDIR} && cmake -DRPM=1 -DCMAKE_BUILD_TYPE=Release ..
cd ${BUILDDIR} && cpack -G DEB
cd ${BUILDDIR} && cpack -G RPM

0 comments on commit c986763

Please sign in to comment.